Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit d8eaf1c

Browse files
committed
Alignment
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1398847 13f79535-47bb-0310-9956-ffa450edef68
1 parent 933cf2d commit d8eaf1c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/test/java/org/apache/commons/csv/PerformanceTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,7 @@ private static void testParseCommonsCSV() throws Exception {
226226

227227
private static Constructor<Lexer> getLexerCtor(final String clazz) throws Exception {
228228
@SuppressWarnings("unchecked")
229-
final
230-
Class<Lexer> lexer = (Class<Lexer>) Class.forName("org.apache.commons.csv."+clazz);
229+
final Class<Lexer> lexer = (Class<Lexer>) Class.forName("org.apache.commons.csv."+clazz);
231230
final Constructor<Lexer> ctor = lexer.getConstructor(new Class<?>[]{CSVFormat.class, ExtendedBufferedReader.class});
232231
return ctor;
233232
}

0 commit comments

Comments
 (0)