Skip to content

Commit fdfe508

Browse files
committed
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
1 parent 72e830c commit fdfe508

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ class CSVLexer extends Lexer {
2525

2626
private final StringBuilder wsBuf = new StringBuilder();
2727

28-
CSVLexer(CSVFormat format, ExtendedBufferedReader in) {
28+
// ctor needs to be public so can be called dynamically by PerformanceTest class
29+
public CSVLexer(CSVFormat format, ExtendedBufferedReader in) {
2930
super(format, in);
3031
}
3132

0 commit comments

Comments
 (0)