14 Mar
2018
14 Mar
'18
4:39 p.m.
On Mar 14, 2018, at 9:27 AM, David Lloyd <david.lloyd@redhat.com> wrote:
+ public synchronized long transferTo(OutputStream out) throws IOException { + int len = count - pos + out.write(but, pos, len);
s/but/buf/ I guess?
Yes, I already caught that myself. I think I generated the webrev before running tests, i.e., out of sequence. Thanks, Brian
+ pos = count; + return len; + } +