Remove redundant modifiers like public on interface members.

Remove redundant modifiers like static on interface.
This commit is contained in:
Gary Gregory 2020-11-21 12:31:40 -05:00
parent 4426ec81a5
commit 2ac83980ea
1 changed files with 2 additions and 2 deletions

View File

@ -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 {