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

Method readInt

src/bin/io/RandomAccessFile.java:105–105  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

103 }
104
105 default int readInt() throws IOException {
106 return readByte() & 0xFF | (readByte() & 0xFF) << 8 | (readByte() & 0xFF) << 16 | (readByte() & 0xFF) << 24;
107 }
108

Callers

nothing calls this directly

Implementers 1

BufferedRandomAccessFilesrc/bin/io/BufferedRandomAccessFile.ja

Calls

no outgoing calls

Tested by

no test coverage detected