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 2012/10/11 16:31:44 UTC

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

Author: ggregory
Date: Thu Oct 11 14:31:43 2012
New Revision: 1397080

URL: http://svn.apache.org/viewvc?rev=1397080&view=rev
Log:
Remove whitespace.

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=1397080&r1=1397079&r2=1397080&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 Thu Oct 11 14:31:43 2012
@@ -135,7 +135,6 @@ public class CSVFormat implements Serial
             .withEscape('\\')
             .withLineSeparator("\n");
 
-
     /**
      * Creates a customized CSV format.
      *
@@ -235,7 +234,6 @@ public class CSVFormat implements Serial
         if (isLineBreak(delimiter)) {
             throw new IllegalArgumentException("The delimiter cannot be a line break");
         }
-
         return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored,
                 emptyLinesIgnored, lineSeparator, header);
     }
@@ -262,7 +260,6 @@ public class CSVFormat implements Serial
         if (isLineBreak(encapsulator)) {
             throw new IllegalArgumentException("The encapsulator cannot be a line break");
         }
-
         return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored,
                 emptyLinesIgnored, lineSeparator, header);
     }
@@ -300,7 +297,6 @@ public class CSVFormat implements Serial
         if (isLineBreak(commentStart)) {
             throw new IllegalArgumentException("The comment start character cannot be a line break");
         }
-
         return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored,
                 emptyLinesIgnored, lineSeparator, header);
     }
@@ -338,7 +334,6 @@ public class CSVFormat implements Serial
         if (isLineBreak(escape)) {
             throw new IllegalArgumentException("The escape character cannot be a line break");
         }
-
         return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored,
                 emptyLinesIgnored, lineSeparator, header);
     }