diff options
Diffstat (limited to 'libjava/ChangeLog')
-rw-r--r-- | libjava/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 128f660522d..aa6242fca36 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,17 @@ +2004-01-29 Mohan Embar <gnustuff@thisiscool.com> + + * java/io/BufferedReader.java (sbuf): New field. + (readLine): Use String.valueOf instead of new String() as per + Per Bothner's suggestion. Use instance sbuf field instead of a + local StringBuffer instance. + * java/io/InputStreamReader.java (read(char[],int,int)): Pass the + caller's buffer to refill(). + (read(void)): Pass our internal work buffer to refill if our + input queue is empty. + (refill): Changed return type to int. Use the specified buffer + instead of our work buffer as per Bryce McKinlay's suggestion. + Return the number of characters read or -1 for EOF. + 2004-01-29 Scott Gilbertson <scottg@mantatest.com> * gnu/awt/xlib/XCanvasPeer.java (handleEvent): Implemented. |