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

Method read

classpath/java/util/zip/InflaterInputStream.java:37–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35 }
36
37 public int read() throws IOException {
38 byte[] buffer = new byte[1];
39 int c = read(buffer);
40 return (c < 0 ? c : (buffer[0] & 0xFF));
41 }
42
43 public int read(byte[] b, int offset, int length) throws IOException {
44 if (inflater.finished()) {

Callers

nothing calls this directly

Calls 6

inflateMethod · 0.80
readMethod · 0.65
finishedMethod · 0.45
needsInputMethod · 0.45
setInputMethod · 0.45
needsDictionaryMethod · 0.45

Tested by

no test coverage detected