From: Archie Cobbs (archie@whistle.com)
Date: Mon Dec 14 1998 - 13:14:58 EST
Parmelan, Edouard writes:
> TVT merge of December 8 kill this patch.
> Now, BufferedInputStream is again broken :(
I'm in the process of rewriting BufferedInputStream.java to fix
some bugs and make it faster. New version will be checked in
shortly.
> How handle read(), read(byte[]) and read(byte[], int, int) in all
> InputStream
> and InputReader subclasses, witch method should be safely overwritten ?
> Is BufferedInputStream should implement read(byte[]) ?
You shouldn't need to override read(byte[]), because the inherited
version works fine for any subclass:
int read(byte[] b) {
return read(b, 0, b.length);
}
> After a TVT Merge (or any other merge) wait some days before create a
> beta release :-)
I definitely agree with this!
-Archie
___________________________________________________________________________
Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com
This archive was generated by hypermail 2b29 : Sat Sep 23 2000 - 19:57:14 EDT