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 83e4a90 commit 523171eCopy full SHA for 523171e
1 file changed
src/main/java/org/apache/commons/csv/Lexer.java
@@ -34,6 +34,9 @@ abstract class Lexer {
34
private final char encapsulator;
35
private final char commmentStart;
36
37
+ final boolean leadingSpacesIgnored;
38
+ final boolean trailingSpacesIgnored;
39
+ final boolean emptyLinesIgnored;
40
41
final CSVFormat format;
42
@@ -50,6 +53,9 @@ abstract class Lexer {
50
53
this.escape = format.getEscape();
51
54
this.encapsulator = format.getEncapsulator();
52
55
this.commmentStart = format.getCommentStart();
56
+ this.leadingSpacesIgnored = format.isLeadingSpacesIgnored();
57
+ this.trailingSpacesIgnored = format.isTrailingSpacesIgnored();
58
+ this.emptyLinesIgnored = format.isEmptyLinesIgnored();
59
}
60
61
int getLineNumber() {
0 commit comments