[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:
parent
51f226d0f8
commit
966cd208ca
|
@ -435,7 +435,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
* on parse error or input read-failure
|
* on parse error or input read-failure
|
||||||
*/
|
*/
|
||||||
CSVRecord nextRecord() throws IOException {
|
public CSVRecord nextRecord() throws IOException {
|
||||||
CSVRecord result = null;
|
CSVRecord result = null;
|
||||||
this.record.clear();
|
this.record.clear();
|
||||||
StringBuilder sb = null;
|
StringBuilder sb = null;
|
||||||
|
|
Loading…
Reference in New Issue