Skip to content

Commit 6b27379

Browse files
committed
Fix JavaDoc references
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512619 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4213415 commit 6b27379

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ public int read() throws IOException {
6363

6464
/**
6565
* Returns the last character that was read as an integer (0 to 65535). This will be the last character returned by
66-
* any of the read methods. This will not include a character read using the {@link #peek()} method. If no
67-
* character has been read then this will return {@link #UNDEFINED}. If the end of the stream was reached on the
68-
* last read then this will return {@link #END_OF_STREAM}.
66+
* any of the read methods. This will not include a character read using the {@link #lookAhead()} method. If no
67+
* character has been read then this will return {@link Constants#UNDEFINED}. If the end of the stream was reached on the
68+
* last read then this will return {@link Constants#END_OF_STREAM}.
6969
*
7070
* @return the last character that was read
7171
*/
@@ -109,7 +109,7 @@ public int read(final char[] buf, final int offset, final int length) throws IOE
109109
* <p>
110110
* Increments {@link #eolCounter}
111111
* <p>
112-
* Sets {@link #lastChar} to {@link #END_OF_STREAM} at EOF, otherwise to LF
112+
* Sets {@link #lastChar} to {@link Constants#END_OF_STREAM} at EOF, otherwise to LF
113113
*
114114
* @return the line that was read, or null if reached EOF.
115115
*/

0 commit comments

Comments
 (0)