()
| 290 | } |
| 291 | |
| 292 | private int _readInt() throws IOException { |
| 293 | int ch1 = archive.read(); |
| 294 | int ch2 = archive.read(); |
| 295 | int ch3 = archive.read(); |
| 296 | int ch4 = archive.read(); |
| 297 | if ((ch1 | ch2 | ch3 | ch4) < 0) |
| 298 | throw new EOFException(); |
| 299 | return (ch1) | (ch2 << 8) | (ch3 << 16) | (ch4 << 24); |
| 300 | } |
| 301 | |
| 302 | private int _readUShort() throws IOException { |
| 303 | int ch1 = archive.read(); |
no test coverage detected