Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
Reviewed
Description
@Override public synchronized int read() throws IOException { ...... if (statistics != null && byteRead >= 0) { statistics.incrementBytesRead(1); } return byteRead; }
I believe it should be statistics.incrementBytesRead(byteRead);?