From 22df0e28c470e98b3eee74420d53dc686be4329c Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 15 Oct 2022 10:12:39 -0400 Subject: [PATCH] Fix Javadoc links --- src/main/java/org/apache/commons/csv/CSVParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index fd4c3a90..a8076d4a 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -742,7 +742,7 @@ public final class CSVParser implements Iterable, Closeable { *

* If it is necessary to construct an iterator which is usable after the * parser is closed, one option is to extract all records as a list with - * {@link getRecords()}, and return an iterator to that list. + * {@link #getRecords()}, and return an iterator to that list. *

*/ @Override @@ -808,7 +808,7 @@ public final class CSVParser implements Iterable, Closeable { * Returns a sequential {@code Stream} with this collection as its source. *

* If the parser is closed, the stream will not produce any more values. - * See the comments in {@link iterator()}. + * See the comments in {@link #iterator()}. *

* @return a sequential {@code Stream} with this collection as its source. * @since 1.9.0