Remove redundant modifiers like public on interface members.
Remove redundant modifiers like static on interface.
This commit is contained in:
parent
4426ec81a5
commit
2ac83980ea
|
@ -241,8 +241,8 @@ public class PerformanceTest {
|
|||
}
|
||||
|
||||
@FunctionalInterface
|
||||
private static interface CSVParserFactory {
|
||||
public CSVParser createParser() throws IOException;
|
||||
private interface CSVParserFactory {
|
||||
CSVParser createParser() throws IOException;
|
||||
}
|
||||
|
||||
private static void testParseCommonsCSV() throws Exception {
|
||||
|
|
Loading…
Reference in New Issue