MCPcopy Create free account
hub / github.com/ReadyTalk/avian / rawByte

Method rawByte

classpath/java/io/ObjectInputStream.java:70–76  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

68 }
69
70 private int rawByte() throws IOException {
71 int c = read();
72 if (c < 0) {
73 throw new EOFException();
74 }
75 return c;
76 }
77
78 private int rawShort() throws IOException {
79 return (rawByte() << 8) | rawByte();

Callers 6

rawShortMethod · 0.95
rawBlockDataByteMethod · 0.95
expectTokenMethod · 0.95
fieldMethod · 0.95
readObjectMethod · 0.95
classDescMethod · 0.95

Calls 1

readMethod · 0.95

Tested by

no test coverage detected