Index: java/io/CharArrayWriter.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/CharArrayWriter.java,v retrieving revision 1.8 diff -u -r1.8 CharArrayWriter.java --- java/io/CharArrayWriter.java 23 Mar 2003 10:39:02 -0000 1.8 +++ java/io/CharArrayWriter.java 12 Apr 2004 14:45:45 -0000 @@ -50,8 +50,8 @@ * following two properties: *

*

*

* There is a constructor that specified the initial buffer size and Index: java/io/PipedInputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/PipedInputStream.java,v retrieving revision 1.14 diff -u -r1.14 PipedInputStream.java --- java/io/PipedInputStream.java 9 Mar 2003 21:54:29 -0000 1.14 +++ java/io/PipedInputStream.java 12 Apr 2004 14:45:46 -0000 @@ -277,7 +277,7 @@ * @param offset The index into the buffer at which to start writing. * @param len The maximum number of bytes to read. * - * @exception IOException If close()/code> was called on this Piped + * @exception IOException If close() was called on this Piped * InputStream. */ public synchronized int read(byte[] buf, int offset, int len) Index: java/io/PipedReader.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/PipedReader.java,v retrieving revision 1.14 diff -u -r1.14 PipedReader.java --- java/io/PipedReader.java 9 Mar 2003 21:54:30 -0000 1.14 +++ java/io/PipedReader.java 12 Apr 2004 14:45:46 -0000 @@ -256,7 +256,7 @@ * @param offset The index into the buffer at which to start writing. * @param len The maximum number of chars to read. * - * @exception IOException If close()/code> was called on this Piped + * @exception IOException If close() was called on this Piped * Reader. */ public int read(char[] buf, int offset, int len) Index: java/io/SerializablePermission.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/SerializablePermission.java,v retrieving revision 1.8 diff -u -r1.8 SerializablePermission.java --- java/io/SerializablePermission.java 23 Mar 2003 10:53:30 -0000 1.8 +++ java/io/SerializablePermission.java 12 Apr 2004 14:45:46 -0000 @@ -48,9 +48,9 @@ * There are currently two allowable permission names for this class: *

* * @see java.security.BasicPermission Index: java/io/StreamTokenizer.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/StreamTokenizer.java,v retrieving revision 1.15 diff -u -r1.15 StreamTokenizer.java --- java/io/StreamTokenizer.java 16 Nov 2003 21:24:58 -0000 1.15 +++ java/io/StreamTokenizer.java 12 Apr 2004 14:45:46 -0000 @@ -73,12 +73,12 @@ * The rules are as follows: * */ public int ttype = TT_NONE; @@ -141,13 +141,13 @@ * following manner: * * * @param in The Reader to read chars from @@ -251,13 +251,13 @@ * returns it. It also can set sval or nval * as described below. The parsing strategy is as follows: * * * @return The token type @@ -635,15 +635,15 @@ * 'x' is determined as follows. *

*

*/ public String toString() Index: java/io/WriteAbortedException.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/WriteAbortedException.java,v retrieving revision 1.10 diff -u -r1.10 WriteAbortedException.java --- java/io/WriteAbortedException.java 24 Feb 2002 04:25:16 -0000 1.10 +++ java/io/WriteAbortedException.java 12 Apr 2004 14:45:46 -0000 @@ -81,7 +81,7 @@ /** * This method returns a message indicating what went wrong, in this * format: - * super.getMessage() + (detail == null ? "" : "; " + detail). + * super.getMessage() + (detail == null ? "" : "; " + detail). * * @return the chained message */