This repository was archived by the owner on Jan 8, 2020. It is now read-only.
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 @@ -51,17 +51,14 @@ final class CSVLexer {
5151 private final char quoteChar ;
5252 private final char commmentStart ;
5353
54- final boolean ignoreSurroundingSpaces ;
55- final boolean ignoreEmptyLines ;
56-
57- final CSVFormat format ;
54+ private final boolean ignoreSurroundingSpaces ;
55+ private final boolean ignoreEmptyLines ;
5856
5957 /** The input stream */
60- final ExtendedBufferedReader in ;
58+ private final ExtendedBufferedReader in ;
6159
62- /** INTERNAL API. ctor needs to be public so can be called dynamically by PerformanceTest class */
60+ /** INTERNAL API. but ctor needs to be called dynamically by PerformanceTest class */
6361 CSVLexer (final CSVFormat format , final ExtendedBufferedReader in ) {
64- this .format = format ;
6562 this .in = in ;
6663 this .delimiter = format .getDelimiter ();
6764 this .escape = mapNullToDisabled (format .getEscape ());
You can’t perform that action at this time.
0 commit comments