diff options
Diffstat (limited to 'libjava/java/io/PipedInputStream.java')
-rw-r--r-- | libjava/java/io/PipedInputStream.java | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libjava/java/io/PipedInputStream.java b/libjava/java/io/PipedInputStream.java index 4f25d5f..4816ce6 100644 --- a/libjava/java/io/PipedInputStream.java +++ b/libjava/java/io/PipedInputStream.java @@ -67,10 +67,15 @@ public class PipedInputStream extends InputStream /** Set to true if close() has been called on this InputStream. */ boolean closed; + /** - * The size of the internal buffer used for input/output. - */ - protected static final int PIPE_SIZE = 2048; + * The size of the internal buffer used for input/output. + */ + /* The "Constant Field Values" Javadoc of the Sun J2SE 1.4 + * specifies 1024. + */ + protected static final int PIPE_SIZE = 1024; + /** * This is the internal circular buffer used for storing bytes written |