()
| 68 | } |
| 69 | |
| 70 | private int rawByte() throws IOException { |
| 71 | int c = read(); |
| 72 | if (c < 0) { |
| 73 | throw new EOFException(); |
| 74 | } |
| 75 | return c; |
| 76 | } |
| 77 | |
| 78 | private int rawShort() throws IOException { |
| 79 | return (rawByte() << 8) | rawByte(); |
no test coverage detected