()
| 219 | } |
| 220 | |
| 221 | private void finish() throws IOException { |
| 222 | deflater.finish(); |
| 223 | while (!deflater.finished()) { |
| 224 | deflate(); |
| 225 | } |
| 226 | deflater.reset(); |
| 227 | } |
| 228 | |
| 229 | private void addTwoBytes(int bytes, int offset, byte[] buffer) throws IOException { |
| 230 | buffer[offset] = (byte) (bytes & 0xff); |
no test coverage detected