Make internal API package private.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1461237 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-03-26 17:42:55 +00:00
parent 193dfd79af
commit 05ecd91994
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import java.io.IOException;
final class CSVLexer extends Lexer { final class CSVLexer extends Lexer {
/** INTERNAL API. ctor needs to be public so can be called dynamically by PerformanceTest class */ /** INTERNAL API. ctor needs to be public so can be called dynamically by PerformanceTest class */
public CSVLexer(final CSVFormat format, final ExtendedBufferedReader in) { CSVLexer(final CSVFormat format, final ExtendedBufferedReader in) {
super(format, in); super(format, in);
} }