Skip to content

Commit

Permalink
Fix #166
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 27, 2019
1 parent 8a119da commit 9773b48
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
language: java

git:
quiet: true
submodules: false

jdk:
- openjdk8
- openjdk11

# 2019-11-27, tatu: Let's try caching Maven dependencies
cache:
directories:
- $HOME/.m2

# whitelist
branches:
only:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ protected String _nextQuotedString() throws IOException
continue;
}
_owner._reportUnexpectedCsvChar(ch, String.format(
"Expected separator (%s) or end-of-line", _getCharDesc(_quoteChar)));
"Expected separator (%s) or end-of-line", _getCharDesc(_separatorChar)));
}
return result;
}
Expand Down
5 changes: 5 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Modules:
=== Releases ===
------------------------------------------------------------------------

2.10.2 (not yet released)

#166: (csv) Incorrect `JsonParseException` Message for missing separator char
(reported by gimiz@github)

2.10.1 (09-Nov-2019)

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

0 comments on commit 9773b48

Please sign in to comment.