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

@ -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;
/**