File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ final class Lexer {
4949 private final char delimiter ;
5050 private final char escape ;
5151 private final char quoteChar ;
52- private final char commmentStart ;
52+ private final char commentStart ;
5353
5454 private final boolean ignoreSurroundingSpaces ;
5555 private final boolean ignoreEmptyLines ;
@@ -63,7 +63,7 @@ final class Lexer {
6363 this .delimiter = format .getDelimiter ();
6464 this .escape = mapNullToDisabled (format .getEscape ());
6565 this .quoteChar = mapNullToDisabled (format .getQuoteChar ());
66- this .commmentStart = mapNullToDisabled (format .getCommentStart ());
66+ this .commentStart = mapNullToDisabled (format .getCommentStart ());
6767 this .ignoreSurroundingSpaces = format .getIgnoreSurroundingSpaces ();
6868 this .ignoreEmptyLines = format .getIgnoreEmptyLines ();
6969 }
@@ -409,14 +409,14 @@ boolean isQuoteChar(final int ch) {
409409 }
410410
411411 boolean isCommentStart (final int ch ) {
412- return ch == commmentStart ;
412+ return ch == commentStart ;
413413 }
414414
415415 private boolean isMetaChar (final int ch ) {
416416 return ch == delimiter ||
417417 ch == escape ||
418418 ch == quoteChar ||
419- ch == commmentStart ;
419+ ch == commentStart ;
420420 }
421421
422422 /**
You can’t perform that action at this time.
0 commit comments