()
| 65 | } |
| 66 | |
| 67 | public short readShort() throws IOException { |
| 68 | return (short)((read0() << 8) | read0()); |
| 69 | } |
| 70 | |
| 71 | public int readInt() throws IOException { |
| 72 | return ((read0() << 24) | (read0() << 16) | (read0() << 8) | read0()); |
no test coverage detected