()
| 35 | } |
| 36 | |
| 37 | public int read() throws IOException { |
| 38 | byte[] buffer = new byte[1]; |
| 39 | int c = read(buffer); |
| 40 | return (c < 0 ? c : (buffer[0] & 0xFF)); |
| 41 | } |
| 42 | |
| 43 | public int read(byte[] b, int offset, int length) throws IOException { |
| 44 | if (inflater.finished()) { |
nothing calls this directly
no test coverage detected