Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/L-JINBIN/ApkDataMultiplexing
/ readUShort
Method
readUShort
src/bin/io/RandomAccessFile.java:93–93 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
91
}
92
93
default
int
readUShort() throws IOException {
94
return
readByte() & 0xFF | (readByte() & 0xFF) << 8;
95
}
96
Callers
nothing calls this directly
Implementers
1
BufferedRandomAccessFile
src/bin/io/BufferedRandomAccessFile.ja
Calls
no outgoing calls
Tested by
no test coverage detected