On Mar 14, 2018, at 9:27 AM, David Lloyd <david.ll...@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; > + } > +