We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0532276 commit c0759cdCopy full SHA for c0759cd
1 file changed
src/main/java/org/apache/commons/csv/Lexer.java
@@ -367,7 +367,8 @@ private Token parseEncapsulatedToken(final Token token) throws IOException {
367
}
368
if (!Character.isWhitespace((char)c)) {
369
// error invalid char between token and next delimiter
370
- throw new IOException("Invalid char between encapsulated token and delimiter at line: " + getCurrentLineNumber() + ", position: " + getCharacterPosition());
+ throw new IOException("Invalid char between encapsulated token and delimiter at line: " +
371
+ getCurrentLineNumber() + ", position: " + getCharacterPosition());
372
373
374
0 commit comments