Read an unsigned short in little endian byte order.
()
| 122 | * Read an unsigned short in little endian byte order. |
| 123 | */ |
| 124 | private int readLeShort() throws IOException |
| 125 | { |
| 126 | return readLeByte() | (readLeByte() << 8); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Read an int in little endian byte order. |
no test coverage detected