>>>>> "Casey" == Casey Marshall <[EMAIL PROTECTED]> writes:
Casey> I'm (finally) checking in Michael Barker's patch to better support
Casey> socket and pipe channel scatter/gather IO. It seems to work fine for
Casey> me on cacao/linux/x86 and jamvm/darwin/x86.
One nit here...
Casey> public int read (ByteBuffer dst) throws IOException
Casey> {
Casey> + /*
Casey> int result;
Casey> byte[] buffer = new byte [dst.remaining ()];
[...]
Casey> return result;
Casey> + */
Casey> + return ch.read(dst);
Casey> }
Just delete code, no need to comment it out.
Tom