File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -226,9 +226,8 @@ private static void testParseCommonsCSV() throws Exception {
226226
227227 private static Constructor <Lexer > getLexerCtor (final String clazz ) throws Exception {
228228 @ SuppressWarnings ("unchecked" )
229- final Class <Lexer > lexer = (Class <Lexer >) Class .forName ("org.apache.commons.csv." +clazz );
230- final Constructor <Lexer > ctor = lexer .getConstructor (new Class <?>[]{CSVFormat .class , ExtendedBufferedReader .class });
231- return ctor ;
229+ final Class <Lexer > lexer = (Class <Lexer >) Class .forName ("org.apache.commons.csv." + clazz );
230+ return lexer .getConstructor (new Class <?>[]{CSVFormat .class , ExtendedBufferedReader .class });
232231 }
233232
234233 private static void testCSVLexer (final boolean newToken , final String test ) throws Exception {
You can’t perform that action at this time.
0 commit comments