MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / _readUShort

Method _readUShort

src/bin/zip/ZipFile.java:302–308  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

300 }
301
302 private int _readUShort() throws IOException {
303 int ch1 = archive.read();
304 int ch2 = archive.read();
305 if ((ch1 | ch2) < 0)
306 throw new EOFException();
307 return ch1 | (ch2 << 8);
308 }
309
310 private long _readUInt() throws IOException {
311 int value = _readInt();

Callers 2

readEntriesMethod · 0.95
parseEocdRecordMethod · 0.95

Calls 1

readMethod · 0.65

Tested by

no test coverage detected