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/04/07 20:13:36 UTC

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

Author: britter
Date: Sun Apr  7 18:13:36 2013
New Revision: 1465439

URL: http://svn.apache.org/r1465439
Log:
Correct JavaDoc indentation, remove trailing white spaces

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=1465439&r1=1465438&r2=1465439&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 Sun Apr  7 18:13:36 2013
@@ -45,7 +45,7 @@ import java.util.Arrays;
  * <pre>Reader in = ...;
  *CSVFormat.EXCEL.toBuilder().withHeader(&quot;Col1&quot;, &quot;Col2&quot;, &quot;Col3&quot;).parse(in);</pre>
  * <p>
- * 
+ *
  * @version $Id$
  */
 public class CSVFormat implements Serializable {
@@ -490,7 +490,7 @@ public class CSVFormat implements Serial
 
     /**
      * Creates a builder based on this format.
-     * 
+     *
      * @return a new builder
      */
     public CSVFormatBuilder toBuilder() {
@@ -600,8 +600,8 @@ public class CSVFormat implements Serial
          * @param in
          *            the input stream
          * @return a CSVRecord stream
-     * @throws IOException
-     *             If an I/O error occurs
+         * @throws IOException
+         *             If an I/O error occurs
          */
         public Iterable<CSVRecord> parse(final Reader in) throws IOException {
             return this.build().parse(in);