/[classpath]/classpath/java/io/BufferedReader.java
ViewVC logotype

Diff of /classpath/java/io/BufferedReader.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by tromey, Fri Aug 31 05:01:00 2001 UTC revision 1.12 by cbj, Fri Aug 31 23:19:09 2001 UTC
# Line 72  public class BufferedReader extends Read Line 72  public class BufferedReader extends Read
72       guaranteed to be >= the read-limit requested in the call to mark. */       guaranteed to be >= the read-limit requested in the call to mark. */
73    int markPos = -1;    int markPos = -1;
74    
75      static final int DEFAULT_BUFFER_SIZE = 4096;
76    
77    /**    /**
78      * Create a new <code>BufferedReader</code> that will read from the      * Create a new <code>BufferedReader</code> that will read from the
79      * specified subordinate stream with a default buffer size of 4096 chars.      * specified subordinate stream with a default buffer size of 4096 chars.
# Line 80  public class BufferedReader extends Read Line 82  public class BufferedReader extends Read
82      */      */
83    public BufferedReader(Reader in)    public BufferedReader(Reader in)
84    {    {
85      this(in, 8192);      this(in, DEFAULT_BUFFER_SIZE);
86    }    }
87    
88    /**    /**

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26