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:
Sebastian Bazley 2012-03-22 16:32:44 +00:00
parent 72e830c08c
commit fdfe50842f
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ class CSVLexer extends Lexer {
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);
}