We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dd5004 commit c223e24Copy full SHA for c223e24
jablib/src/main/java/org/jabref/logic/layout/format/NonSpaceWhitespaceRemover.java
@@ -23,7 +23,7 @@ public class NonSpaceWhitespaceRemover implements LayoutFormatter {
23
// First pass: detect the first whitespace to avoid building anything unnecessarily
24
for (int i = 0; i < length; i++) {
25
char c = fieldEntry.charAt(i);
26
- if (!(shouldKeep(c))) {
+ if (!shouldKeep(c)) {
27
firstRemoveIndex = i;
28
break;
29
}
0 commit comments