()
| 300 | } |
| 301 | |
| 302 | private int _readUShort() throws IOException { |
| 303 | int ch1 = archive.read(); |
| 304 | int ch2 = archive.read(); |
| 305 | if ((ch1 | ch2) < 0) |
| 306 | throw new EOFException(); |
| 307 | return ch1 | (ch2 << 8); |
| 308 | } |
| 309 | |
| 310 | private long _readUInt() throws IOException { |
| 311 | int value = _readInt(); |
no test coverage detected