You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/08/10 12:51:43 UTC

svn commit: r1512619 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java

Author: britter
Date: Sat Aug 10 10:51:43 2013
New Revision: 1512619

URL: http://svn.apache.org/r1512619
Log:
Fix JavaDoc references

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java?rev=1512619&r1=1512618&r2=1512619&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java Sat Aug 10 10:51:43 2013
@@ -63,9 +63,9 @@ final class ExtendedBufferedReader exten
 
     /**
      * 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
-     * character has been read then this will return {@link #UNDEFINED}. If the end of the stream was reached on the
-     * last read then this will return {@link #END_OF_STREAM}.
+     * 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#END_OF_STREAM}.
      *
      * @return the last character that was read
      */
@@ -109,7 +109,7 @@ final class ExtendedBufferedReader exten
      * <p>
      * Increments {@link #eolCounter}
      * <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.
      */