From 4215230883d4e91cc14891c00a3d7add22ca3ee9 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Fri, 13 Sep 2013 10:54:30 +0000 Subject: [PATCH] CSV content can also be parsed partly into memory, if records have already been consumed git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522862 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/CSVParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index fc67e5b5..166f28c0 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -90,7 +90,7 @@ import java.util.NoSuchElementException; * customising CSVFormats is available in {@link CSVFormat CSVFormat JavaDoc}. *

* - *

Parsing completely into memory

+ *

Parsing into memory

*

* If parsing record wise is not desired, the contents of the input can be read completely into memory. *