Replace tabs with spaces
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1511428 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
53f83b4f18
commit
643b628af4
|
@ -498,19 +498,19 @@ public class CSVFormat implements Serializable {
|
|||
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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue