Skip to content

Commit aede94a

Browse files
committed
Make fields private
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1511015 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7b168eb commit aede94a

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

src/main/java/org/apache/commons/csv/CSVLexer.java

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)