aherbert commented on code in PR #439: URL: https://github.com/apache/commons-csv/pull/439#discussion_r1665924494
########## src/main/java/org/apache/commons/csv/Lexer.java: ########## @@ -467,7 +469,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 IOUtils#EOF} if char following the escape is Review Comment: ```{@link org.apache.commons.io.IOUtils#EOF IOUtils.EOF}``` ########## src/main/java/org/apache/commons/csv/Lexer.java: ########## @@ -22,6 +22,8 @@ import java.io.Closeable; import java.io.IOException; +import org.apache.commons.io.IOUtils; Review Comment: We do not require this import for the code. You can use it directly in the javadoc. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org