Read an int in little endian byte order.
()
| 130 | * Read an int in little endian byte order. |
| 131 | */ |
| 132 | private int readLeInt() throws IOException |
| 133 | { |
| 134 | return readLeShort() | (readLeShort() << 16); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Open the next entry from the zip archive, and return its description. |
no test coverage detected