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/07 20:25:45 UTC

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

Author: britter
Date: Wed Aug  7 18:25:44 2013
New Revision: 1511428

URL: http://svn.apache.org/r1511428
Log:
Replace tabs with 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=1511428&r1=1511427&r2=1511428&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 Wed Aug  7 18:25:44 2013
@@ -498,19 +498,19 @@ public class CSVFormat implements Serial
         return quoteChar != null;
     }
 
-	/**
-	 * Parses the specified content.
-	 *
-	 * <p>
-	 * See also the various static parse methods on {@link CSVParser}.
-	 * </p>
-	 *
-	 * @param in
-	 *            the input stream
-	 * @return a parser over a stream of {@link CSVRecord}s.
-	 * @throws IOException
-	 *             If an I/O error occurs
-	 */
+    /**
+     * Parses the specified content.
+     *
+     * <p>
+     * See also the various static parse methods on {@link CSVParser}.
+     * </p>
+     *
+     * @param in
+     *            the input stream
+     * @return a parser over a stream of {@link CSVRecord}s.
+     * @throws IOException
+     *             If an I/O error occurs
+     */
     public CSVParser parse(final Reader in) throws IOException {
         return new CSVParser(in, this);
     }