Fix revision

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1306789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-29 11:35:20 +00:00
parent 517bf0d583
commit a5b76b6c20
1 changed files with 2 additions and 2 deletions

View File

@ -21,10 +21,10 @@ import java.io.IOException;
import static org.apache.commons.csv.Token.Type.*;
class CSVLexer130663 extends Lexer {
class CSVLexer1306663 extends Lexer {
// ctor needs to be public so can be called dynamically by PerformanceTest class
public CSVLexer130663(CSVFormat format, ExtendedBufferedReader in) {
public CSVLexer1306663(CSVFormat format, ExtendedBufferedReader in) {
super(format, in);
}