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

Method readLeByte

src/gnu/zip/ZipInputStream.java:110–119  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

108 }
109
110 private int readLeByte() throws IOException
111 {
112 if (avail <= 0)
113 {
114 fillBuf();
115 if (avail <= 0)
116 throw new ZipException("EOF in header");
117 }
118 return buf[len - avail--] & 0xff;
119 }
120
121 /**
122 * Read an unsigned short in little endian byte order.

Callers 1

readLeShortMethod · 0.95

Calls 1

fillBufMethod · 0.95

Tested by

no test coverage detected