Skip to content

Commit d48d712

Browse files
authored
Merge pull request json-path#350 from jonnywei/master
fix line feed error
2 parents 2223256 + 2757a3b commit d48d712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

json-path/src/main/java/com/jayway/jsonpath/internal/path/PathCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class PathCompiler {
3434
private static final char SPACE = ' ';
3535
private static final char TAB = '\t';
3636
private static final char CR = '\r';
37-
private static final char LF = '\r';
37+
private static final char LF = '\n';
3838
private static final char BEGIN_FILTER = '?';
3939
private static final char COMMA = ',';
4040
private static final char SPLIT = ':';

0 commit comments

Comments
 (0)