Skip to content

Commit db76986

Browse files
committed
Correction to white space skipping.
1 parent b705782 commit db76986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fbjava-impl/src/main/java/org/firebirdsql/fbjava/impl/ExternalEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@ private void skipBlanks(String s, int[] pos)
14471447
int len = s.length();
14481448
char c;
14491449

1450-
while (pos[0] < len && ((c = s.charAt(pos[0])) == ' ' || c == '\t'))
1450+
while (pos[0] < len && ((c = s.charAt(pos[0])) == ' ' || c == '\t' || c == '\r' || c == '\n'))
14511451
++pos[0];
14521452
}
14531453

0 commit comments

Comments
 (0)