()
| 107 | } |
| 108 | |
| 109 | final int getShort() throws IOException { |
| 110 | int b1 = in.read(); |
| 111 | int b2 = in.read(); |
| 112 | if (littleEndian) |
| 113 | return ((b2<<8) + b1); |
| 114 | else |
| 115 | return ((b1<<8) + b2); |
| 116 | } |
| 117 | |
| 118 | final long readLong() throws IOException { |
| 119 | if (littleEndian) |
no test coverage detected