[CSV-110] Add ability to parse single lines.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1585496 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-04-07 14:50:26 +00:00
parent 51f226d0f8
commit 966cd208ca
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
* @throws IOException
* on parse error or input read-failure
*/
CSVRecord nextRecord() throws IOException {
public CSVRecord nextRecord() throws IOException {
CSVRecord result = null;
this.record.clear();
StringBuilder sb = null;