Skip to content

Commit 47eeab2

Browse files
committed
Fix JavaDoc
1 parent a1cde7e commit 47eeab2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ long getCurrentLineNumber() {
8484
* Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by
8585
* any of the read methods. This will not include a character read using the {@link #lookAhead()} method. If no
8686
* character has been read then this will return {@link Constants#UNDEFINED}. If the end of the stream was reached
87-
* on the last read then this will return {@link Constants#EOF}.
87+
* on the last read then this will return {@link org.apache.commons.io.IOUtils#EOF IOUtils#EOF}.
8888
*
8989
* @return the last character that was read
9090
*/

src/main/java/org/apache/commons/csv/Lexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ boolean readEndOfLine(int ch) throws IOException {
467467
* On return, the next character is available by calling {@link ExtendedBufferedReader#getLastChar()}
468468
* on the input stream.
469469
*
470-
* @return the unescaped character (as an int) or {@link Constants#EOF} if char following the escape is
470+
* @return the unescaped character (as an int) or {@link org.apache.commons.io.IOUtils#EOF IOUtils#EOF} if char following the escape is
471471
* invalid.
472472
* @throws IOException if there is a problem reading the stream or the end of stream is detected:
473473
* the escape character is not allowed at end of stream

0 commit comments

Comments
 (0)