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:
parent
c694d060bd
commit
759596a54a
|
@ -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 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);
|
||||
|
|
Loading…
Reference in New Issue