Allow class to be instantiated dynamically
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1303879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72e830c08c
commit
fdfe50842f
|
@ -25,7 +25,8 @@ class CSVLexer extends Lexer {
|
||||||
|
|
||||||
private final StringBuilder wsBuf = new StringBuilder();
|
private final StringBuilder wsBuf = new StringBuilder();
|
||||||
|
|
||||||
CSVLexer(CSVFormat format, ExtendedBufferedReader in) {
|
// ctor needs to be public so can be called dynamically by PerformanceTest class
|
||||||
|
public CSVLexer(CSVFormat format, ExtendedBufferedReader in) {
|
||||||
super(format, in);
|
super(format, in);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue