Skip to content

Commit c223e24

Browse files
calixtuskoppor
andcommitted
Rewrite
Co-authored-by: Oliver Kopp <[email protected]>
1 parent 4dd5004 commit c223e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jablib/src/main/java/org/jabref/logic/layout/format/NonSpaceWhitespaceRemover.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class NonSpaceWhitespaceRemover implements LayoutFormatter {
2323
// First pass: detect the first whitespace to avoid building anything unnecessarily
2424
for (int i = 0; i < length; i++) {
2525
char c = fieldEntry.charAt(i);
26-
if (!(shouldKeep(c))) {
26+
if (!shouldKeep(c)) {
2727
firstRemoveIndex = i;
2828
break;
2929
}

0 commit comments

Comments
 (0)