MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / readLeInt

Method readLeInt

src/gnu/zip/ZipInputStream.java:132–135  ·  view source on GitHub ↗

Read an int in little endian byte order.

()

Source from the content-addressed store, hash-verified

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.

Callers 2

getNextEntryMethod · 0.95
readDataDescrMethod · 0.95

Calls 1

readLeShortMethod · 0.95

Tested by

no test coverage detected