File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ final class CSVRecordIterator implements Iterator<CSVRecord> {
225225 *
226226 * @throws IOException on parse error or input read-failure
227227 * @throws CSVException on invalid input.
228- * @return the next record.
228+ * @return the next record, or {@code null} if the end of the stream has been reached .
229229 */
230230 private CSVRecord getNextRecord () {
231231 return Uncheck .get (CSVParser .this ::nextRecord );
@@ -876,8 +876,8 @@ public Iterator<CSVRecord> iterator() {
876876 /**
877877 * Parses the next record from the current point in the stream.
878878 *
879- * @return the record as an array of values, or {@code null} if the end of the stream has been reached
880- * @throws IOException on parse error or input read-failure
879+ * @return the record as an array of values, or {@code null} if the end of the stream has been reached.
880+ * @throws IOException on parse error or input read-failure.
881881 * @throws CSVException on invalid input.
882882 */
883883 CSVRecord nextRecord () throws IOException {
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ public CSVParser getParser() {
197197 * Returns the number of this record in the parsed CSV file.
198198 *
199199 * <p>
200- * <strong>ATTENTION :</strong> If your CSV input has multi-line values, the returned number does not correspond to
200+ * <strong>NOTE :</strong>If your CSV input has multi-line values, the returned number does not correspond to
201201 * the current line number of the parser that created this record.
202202 * </p>
203203 *
You can’t perform that action at this time.
0 commit comments