You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2016/05/03 19:35:47 UTC

svn commit: r1742149 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Author: britter
Date: Tue May  3 17:35:46 2016
New Revision: 1742149

URL: http://svn.apache.org/viewvc?rev=1742149&view=rev
Log:
Drop modifiers which are implied by the context

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1742149&r1=1742148&r2=1742149&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Tue May  3 17:35:46 2016
@@ -153,7 +153,7 @@ public final class CSVFormat implements
      *
      * @since 1.2
      */
-    public static enum Predefined {
+    public enum Predefined {
 
         /**
          * @see CSVFormat#DEFAULT
@@ -194,7 +194,7 @@ public final class CSVFormat implements
 
         private final CSVFormat format;
 
-        private Predefined(final CSVFormat format) {
+        Predefined(final CSVFormat format) {
             this.format = format;
         }
 
@@ -206,7 +206,7 @@ public final class CSVFormat implements
         public CSVFormat getFormat() {
             return format;
         }
-    };
+    }
 
     /**
      * Standard comma separated format, as for {@link #RFC4180} but allowing empty lines.