MCPcopy Create free account
hub / github.com/antlr/codebuff / read

Method read

output/java_guava/1.4.18/MultiInputStream.java:84–95  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

82 }
83
84 @Override
85 public int read() throws IOException {
86 if (in == null) {
87 return -1;
88 }
89 int result = in.read();
90 if (result == -1) {
91 advance();
92 return read();
93 }
94 return result;
95 }
96
97 @Override
98 public int read(@Nullable byte[] b, int off, int len) throws IOException {

Callers 1

skipMethod · 0.95

Calls 1

advanceMethod · 0.95

Tested by

no test coverage detected