From 47eeab271cf041e4ce536384942960a2b85dd44d Mon Sep 17 00:00:00 2001 From: Sigee Date: Tue, 9 Jul 2024 11:06:54 +0200 Subject: [PATCH] Fix JavaDoc --- .../java/org/apache/commons/csv/ExtendedBufferedReader.java | 2 +- src/main/java/org/apache/commons/csv/Lexer.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java index 5d383b2858..ea180b6399 100644 --- a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java +++ b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java @@ -84,7 +84,7 @@ long getCurrentLineNumber() { * Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by * any of the read methods. This will not include a character read using the {@link #lookAhead()} method. If no * character has been read then this will return {@link Constants#UNDEFINED}. If the end of the stream was reached - * on the last read then this will return {@link Constants#EOF}. + * on the last read then this will return {@link org.apache.commons.io.IOUtils#EOF IOUtils#EOF}. * * @return the last character that was read */ diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java index d2b9ba6c22..088a736109 100644 --- a/src/main/java/org/apache/commons/csv/Lexer.java +++ b/src/main/java/org/apache/commons/csv/Lexer.java @@ -467,7 +467,7 @@ boolean readEndOfLine(int ch) throws IOException { * On return, the next character is available by calling {@link ExtendedBufferedReader#getLastChar()} * on the input stream. * - * @return the unescaped character (as an int) or {@link Constants#EOF} if char following the escape is + * @return the unescaped character (as an int) or {@link org.apache.commons.io.IOUtils#EOF IOUtils#EOF} if char following the escape is * invalid. * @throws IOException if there is a problem reading the stream or the end of stream is detected: * the escape character is not allowed at end of stream