(byte[] data)
| 496 | } |
| 497 | |
| 498 | private void _writeBytes(byte[] data) throws IOException { |
| 499 | if (data.length > 0) |
| 500 | archive.write(data); |
| 501 | } |
| 502 | |
| 503 | private void _writeShort(int v) throws IOException { |
| 504 | archive.write(v & 0xFF); |
no test coverage detected