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 2013/08/10 12:32:19 UTC

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

Author: britter
Date: Sat Aug 10 10:32:19 2013
New Revision: 1512610

URL: http://svn.apache.org/r1512610
Log:
Methods are no longer used in test code. Make them private.

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=1512610&r1=1512609&r2=1512610&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 Sat Aug 10 10:32:19 2013
@@ -187,8 +187,7 @@ public class CSVFormat implements Serial
      *
      * @return true if <code>c</code> is a line break character
      */
-    // package protected to give access without needing a synthetic accessor
-    static boolean isLineBreak(final char c) {
+    private static boolean isLineBreak(final char c) {
         return c == LF || c == CR;
     }
 
@@ -200,8 +199,7 @@ public class CSVFormat implements Serial
      *
      * @return true if <code>c</code> is a line break character (and not null)
      */
-    // package protected to give access without needing a synthetic accessor
-    static boolean isLineBreak(final Character c) {
+    private static boolean isLineBreak(final Character c) {
         return c != null && isLineBreak(c.charValue());
     }