Skip to content

Commit 2ac8398

Browse files
committed
Remove redundant modifiers like public on interface members.
Remove redundant modifiers like static on interface.
1 parent 4426ec8 commit 2ac8398

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ private static void testParser(final String msg, final CSVParserFactory fac) thr
241241
}
242242

243243
@FunctionalInterface
244-
private static interface CSVParserFactory {
245-
public CSVParser createParser() throws IOException;
244+
private interface CSVParserFactory {
245+
CSVParser createParser() throws IOException;
246246
}
247247

248248
private static void testParseCommonsCSV() throws Exception {

0 commit comments

Comments
 (0)