Fix JavaDoc references

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512619 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-10 10:51:43 +00:00
parent 4213415b2c
commit 6b27379c40
1 changed files with 4 additions and 4 deletions

View File

@ -63,9 +63,9 @@ final class ExtendedBufferedReader extends BufferedReader {
/** /**
* Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by * 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 #peek()} method. If no * 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 #UNDEFINED}. If the end of the stream was reached on the * 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 #END_OF_STREAM}. * last read then this will return {@link Constants#END_OF_STREAM}.
* *
* @return the last character that was read * @return the last character that was read
*/ */
@ -109,7 +109,7 @@ final class ExtendedBufferedReader extends BufferedReader {
* <p> * <p>
* Increments {@link #eolCounter} * Increments {@link #eolCounter}
* <p> * <p>
* Sets {@link #lastChar} to {@link #END_OF_STREAM} at EOF, otherwise to LF * Sets {@link #lastChar} to {@link Constants#END_OF_STREAM} at EOF, otherwise to LF
* *
* @return the line that was read, or null if reached EOF. * @return the line that was read, or null if reached EOF.
*/ */