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

Method rawString

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

Source from the content-addressed store, hash-verified

88 }
89
90 private String rawString() throws IOException {
91 int length = rawShort();
92 byte[] array = new byte[length];
93 readFully(array);
94 return new String(array);
95 }
96
97 public int read(byte[] b, int offset, int length) throws IOException {
98 return in.read(b, offset, length);

Callers 1

classDescMethod · 0.95

Calls 2

rawShortMethod · 0.95
readFullyMethod · 0.95

Tested by

no test coverage detected