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 8a3ca1a commit 453c7d1Copy full SHA for 453c7d1
1 file changed
src/main/java/org/apache/commons/csv/Lexer.java
@@ -89,7 +89,7 @@ Token nextToken(final Token token) throws IOException {
89
int c = reader.read();
90
91
if (ignoreSurroundingSpaces) {
92
- while (c == ' ' || c == '\t') {
+ while ((delimiter != ' ' && c == ' ') || (delimiter != '\t' && c == '\t')) {
93
c = reader.read();
94
}
95
0 commit comments