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
This commit is contained in:
Benedikt Ritter 2013-04-07 18:13:36 +00:00
parent c694d060bd
commit 759596a54a
1 changed files with 4 additions and 4 deletions

View File

@ -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 Serializable {
/**
* Creates a builder based on this format.
*
*
* @return a new builder
*/
public CSVFormatBuilder toBuilder() {
@ -600,8 +600,8 @@ public class CSVFormat implements Serializable {
* @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);