(int len)
| 284 | } |
| 285 | |
| 286 | private byte[] _readBytes(int len) throws IOException { |
| 287 | byte[] bytes = new byte[len]; |
| 288 | archive.readFully(bytes); |
| 289 | return bytes; |
| 290 | } |
| 291 | |
| 292 | private int _readInt() throws IOException { |
| 293 | int ch1 = archive.read(); |
no test coverage detected