File tree 3 files changed +15
-1
lines changed
csv/src/main/java/com/fasterxml/jackson/dataformat/csv/impl
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
2
3
+ git :
4
+ quiet : true
5
+ submodules : false
6
+
3
7
jdk :
4
8
- openjdk8
5
9
- openjdk11
6
10
11
+ # 2019-11-27, tatu: Let's try caching Maven dependencies
12
+ cache :
13
+ directories :
14
+ - $HOME/.m2
15
+
7
16
# whitelist
8
17
branches :
9
18
only :
Original file line number Diff line number Diff line change @@ -865,7 +865,7 @@ protected String _nextQuotedString() throws IOException
865
865
continue ;
866
866
}
867
867
_owner ._reportUnexpectedCsvChar (ch , String .format (
868
- "Expected separator (%s) or end-of-line" , _getCharDesc (_quoteChar )));
868
+ "Expected separator (%s) or end-of-line" , _getCharDesc (_separatorChar )));
869
869
}
870
870
return result ;
871
871
}
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ Modules:
8
8
=== Releases ===
9
9
------------------------------------------------------------------------
10
10
11
+ 2.10.2 (not yet released)
12
+
13
+ #166 : (csv) Incorrect `JsonParseException` Message for missing separator char
14
+ (reported by gimiz@github)
15
+
11
16
2.10.1 (09 -Nov-2019 )
12
17
13
18
#15 : Add a `CsvParser.Feature.SKIP_EMPTY_LINES` to allow skipping empty rows
You can’t perform that action at this time.
0 commit comments