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

Method read

classpath/java/util/zip/ZipFile.java:365–369  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

363 }
364
365 public int read() throws IOException {
366 byte[] b = new byte[1];
367 int c = read(b);
368 return (c == -1 ? -1 : b[0] & 0xFF);
369 }
370
371 public int read(byte[] b, int offset, int length) throws IOException {
372 if (this.length == 0) return -1;

Callers

nothing calls this directly

Calls 2

readFullyMethod · 0.65
seekMethod · 0.45

Tested by

no test coverage detected