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

Method writeUShort

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

Source from the content-addressed store, hash-verified

52 }
53
54 default void writeUShort(int i) throws IOException {
55 write(i & 0xFF);
56 write(i >>> 8 & 0xFF);
57 }

Callers

nothing calls this directly

Implementers 1

BufferedRandomAccessFilesrc/bin/io/BufferedRandomAccessFile.ja

Calls

no outgoing calls

Tested by

no test coverage detected