MCPcopy Index your code
hub / github.com/dumbledore/AlbiteREADER / readLeShort

Method readLeShort

src/gnu/zip/ZipInputStream.java:124–127  ·  view source on GitHub ↗

Read an unsigned short in little endian byte order.

()

Source from the content-addressed store, hash-verified

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.

Callers 2

readLeIntMethod · 0.95
getNextEntryMethod · 0.95

Calls 1

readLeByteMethod · 0.95

Tested by

no test coverage detected