Skip to content

Commit 9773b48

Browse files
committed
Fix #166
1 parent 8a119da commit 9773b48

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Diff for: .travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
language: java
22

3+
git:
4+
quiet: true
5+
submodules: false
6+
37
jdk:
48
- openjdk8
59
- openjdk11
610

11+
# 2019-11-27, tatu: Let's try caching Maven dependencies
12+
cache:
13+
directories:
14+
- $HOME/.m2
15+
716
# whitelist
817
branches:
918
only:

Diff for: csv/src/main/java/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ protected String _nextQuotedString() throws IOException
865865
continue;
866866
}
867867
_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)));
869869
}
870870
return result;
871871
}

Diff for: release-notes/VERSION-2.x

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Modules:
88
=== Releases ===
99
------------------------------------------------------------------------
1010

11+
2.10.2 (not yet released)
12+
13+
#166: (csv) Incorrect `JsonParseException` Message for missing separator char
14+
(reported by gimiz@github)
15+
1116
2.10.1 (09-Nov-2019)
1217

1318
#15: Add a `CsvParser.Feature.SKIP_EMPTY_LINES` to allow skipping empty rows

0 commit comments

Comments
 (0)