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("Col1", "Col2",
"Col3").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);