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:
Benedikt Ritter 2013-08-07 18:25:44 +00:00
parent 53f83b4f18
commit 643b628af4
1 changed files with 13 additions and 13 deletions

View File

@ -498,19 +498,19 @@ public class CSVFormat implements Serializable {
return quoteChar != null; return quoteChar != null;
} }
/** /**
* Parses the specified content. * Parses the specified content.
* *
* <p> * <p>
* See also the various static parse methods on {@link CSVParser}. * See also the various static parse methods on {@link CSVParser}.
* </p> * </p>
* *
* @param in * @param in
* the input stream * the input stream
* @return a parser over a stream of {@link CSVRecord}s. * @return a parser over a stream of {@link CSVRecord}s.
* @throws IOException * @throws IOException
* If an I/O error occurs * If an I/O error occurs
*/ */
public CSVParser parse(final Reader in) throws IOException { public CSVParser parse(final Reader in) throws IOException {
return new CSVParser(in, this); return new CSVParser(in, this);
} }