BufferedReader.java, [...]: Re-merged with Classpath.

* java/io/BufferedReader.java, java/io/ObjectInput.java,
	java/io/ObjectInputValidation.java, java/io/ObjectOutput.java:
	Re-merged with Classpath.

From-SVN: r45342
This commit is contained in:
Tom Tromey 2001-09-01 00:59:09 +00:00 committed by Tom Tromey
parent 898c7238df
commit 788d7b942c
6 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,9 @@
2001-08-31 Tom Tromey <tromey@redhat.com>
* java/io/BufferedReader.java, java/io/ObjectInput.java,
java/io/ObjectInputValidation.java, java/io/ObjectOutput.java:
Re-merged with Classpath.
Re-merge with Classpath:
* java/util/Comparator (equals): Added.
* java/io/PipedWriter.java (write): Changed argument to `int'.

View File

@ -72,6 +72,8 @@ public class BufferedReader extends Reader
guaranteed to be >= the read-limit requested in the call to mark. */
int markPos = -1;
// The JCL book specifies the default buffer size as 8K characters.
// This is package-private because it is used by LineNumberReader.
static final int DEFAULT_BUFFER_SIZE = 8192;
/**

View File

@ -49,7 +49,7 @@ package java.io;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public abstract interface Externalizable extends Serializable
public interface Externalizable extends Serializable
{
/**

View File

@ -37,7 +37,7 @@ package java.io;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public abstract interface ObjectInput extends DataInput
public interface ObjectInput extends DataInput
{
/**

View File

@ -34,7 +34,7 @@ package java.io;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public abstract interface ObjectInputValidation
public interface ObjectInputValidation
{
/**

View File

@ -36,7 +36,7 @@ package java.io;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public abstract interface ObjectOutput extends DataOutput
public interface ObjectOutput extends DataOutput
{