Skip to content

Commit 759596a

Browse files
committed
Correct JavaDoc indentation, remove trailing white spaces
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1465439 13f79535-47bb-0310-9956-ffa450edef68
1 parent c694d06 commit 759596a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* <pre>Reader in = ...;
4646
*CSVFormat.EXCEL.toBuilder().withHeader(&quot;Col1&quot;, &quot;Col2&quot;, &quot;Col3&quot;).parse(in);</pre>
4747
* <p>
48-
*
48+
*
4949
* @version $Id$
5050
*/
5151
public class CSVFormat implements Serializable {
@@ -490,7 +490,7 @@ public boolean equals(final Object obj) {
490490

491491
/**
492492
* Creates a builder based on this format.
493-
*
493+
*
494494
* @return a new builder
495495
*/
496496
public CSVFormatBuilder toBuilder() {
@@ -600,8 +600,8 @@ public CSVFormat build() {
600600
* @param in
601601
* the input stream
602602
* @return a CSVRecord stream
603-
* @throws IOException
604-
* If an I/O error occurs
603+
* @throws IOException
604+
* If an I/O error occurs
605605
*/
606606
public Iterable<CSVRecord> parse(final Reader in) throws IOException {
607607
return this.build().parse(in);

0 commit comments

Comments
 (0)