We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbc892 commit f7c067dCopy full SHA for f7c067d
1 file changed
src/main/java/org/apache/commons/csv/Lexer.java
@@ -123,6 +123,9 @@ boolean isDelimiter(final int ch) throws IOException {
123
if (ch != delimiter[0]) {
124
return false;
125
}
126
+ if (delimiter.length == 1) {
127
+ return true;
128
+ }
129
final int len = delimiter.length - 1;
130
final char[] buf = reader.lookAhead(len);
131
for (int i = 0; i < len; i++) {
0 commit comments