classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: minor API doc fixes in java.io.*


From: David Gilbert
Subject: [cp-patches] FYI: minor API doc fixes in java.io.*
Date: Mon, 11 Jul 2005 23:04:01 +0000
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050426)

I committed this patch:

2005-07-11  David Gilbert  <address@hidden>

        * java/io/DataOutput.java: fixed minor API doc errors,
        * java/io/LineNumberInputStream.java: likewise.

Regards,

Dave Gilbert

Index: java/io/DataOutput.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/io/DataOutput.java,v
retrieving revision 1.14
diff -u -r1.14 DataOutput.java
--- java/io/DataOutput.java     2 Jul 2005 20:32:37 -0000       1.14
+++ java/io/DataOutput.java     11 Jul 2005 21:59:23 -0000
@@ -195,7 +195,7 @@
    *
    * @exception IOException If an error occurs
    *
-   * @see writeInt
+   * @see #writeInt
    * @see DataInput#readFloat
    * @see Float#floatToIntBits
    */
@@ -216,7 +216,7 @@
    *
    * @exception IOException If any other error occurs
    *
-   * @see writeLong
+   * @see #writeLong
    * @see DataInput#readDouble
    * @see Double#doubleToLongBits
    */
@@ -245,7 +245,7 @@
    *
    * @exception IOException If an error occurs
    *
-   * @see writeChar
+   * @see #writeChar(int)
    */
   void writeChars(String value) throws IOException;
 
Index: java/io/LineNumberInputStream.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/io/LineNumberInputStream.java,v
retrieving revision 1.10
diff -u -r1.10 LineNumberInputStream.java
--- java/io/LineNumberInputStream.java  2 Jul 2005 20:32:38 -0000       1.10
+++ java/io/LineNumberInputStream.java  11 Jul 2005 21:59:23 -0000
@@ -216,8 +216,8 @@
    * a single "\n" value which is stored in the buffer.  Only a single
    * byte is counted towards the number of bytes read in this case.
    *
-   * @param buf The array into which the bytes read should be stored
-   * @param offset The offset into the array to start storing bytes
+   * @param b The array into which the bytes read should be stored
+   * @param off The offset into the array to start storing bytes
    * @param len The requested number of bytes to read
    *
    * @return The actual number of bytes read, or -1 if end of stream

reply via email to

[Prev in Thread] Current Thread [Next in Thread]