()
| 579 | } |
| 580 | |
| 581 | public int read() throws IOException |
| 582 | { |
| 583 | if (bufferOffset + pos >= end + dummyByteCount) |
| 584 | return -1; |
| 585 | if (pos == buffer.length) |
| 586 | { |
| 587 | bufferOffset += buffer.length; |
| 588 | pos = 0; |
| 589 | fillBuffer(); |
| 590 | } |
| 591 | |
| 592 | return buffer[pos++] & 0xFF; |
| 593 | } |
| 594 | |
| 595 | public int read(byte[] b, int off, int len) throws IOException |
| 596 | { |
no test coverage detected