(int i)
| 219 | } |
| 220 | |
| 221 | @Override |
| 222 | public void write(int i) throws IOException { |
| 223 | if (current == null) { |
| 224 | getNewInputBuffer(); |
| 225 | } |
| 226 | if (current.remaining() < 1) { |
| 227 | spill(); |
| 228 | } |
| 229 | uncompressedBytes += 1; |
| 230 | current.put((byte) i); |
| 231 | } |
| 232 | |
| 233 | @Override |
| 234 | public void write(byte[] bytes, int offset, int length) throws IOException { |
nothing calls this directly
no test coverage detected