You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 17:31:44 UTC

[commons-csv] branch master updated: Remove redundant modifiers like public on interface members. Remove redundant modifiers like static on interface.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new 2ac8398  Remove redundant modifiers like public on interface members. Remove redundant modifiers like static on interface.
2ac8398 is described below

commit 2ac83980ea4630bf92c2bbcf15c6efaa9e71cb3e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:31:40 2020 -0500

    Remove redundant modifiers like public on interface members.
    Remove redundant modifiers like static on interface.
---
 src/test/java/org/apache/commons/csv/PerformanceTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/csv/PerformanceTest.java b/src/test/java/org/apache/commons/csv/PerformanceTest.java
index 1f7884f..9d2106a 100644
--- a/src/test/java/org/apache/commons/csv/PerformanceTest.java
+++ b/src/test/java/org/apache/commons/csv/PerformanceTest.java
@@ -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 {