We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 933cf2d commit d8eaf1cCopy full SHA for d8eaf1c
1 file changed
src/test/java/org/apache/commons/csv/PerformanceTest.java
@@ -226,8 +226,7 @@ private static void testParseCommonsCSV() throws Exception {
226
227
private static Constructor<Lexer> getLexerCtor(final String clazz) throws Exception {
228
@SuppressWarnings("unchecked")
229
- final
230
- Class<Lexer> lexer = (Class<Lexer>) Class.forName("org.apache.commons.csv."+clazz);
+ final Class<Lexer> lexer = (Class<Lexer>) Class.forName("org.apache.commons.csv."+clazz);
231
final Constructor<Lexer> ctor = lexer.getConstructor(new Class<?>[]{CSVFormat.class, ExtendedBufferedReader.class});
232
return ctor;
233
}
0 commit comments