MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / available

Method available

src/gnu/zip/ZipFile.java:452–459  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

450 return new InflaterInputStream(inp, inf)
451 {
452 public int available() throws IOException
453 {
454 if (sz == -1)
455 return super.available();
456 if (super.available() != 0)
457 return sz - inf.getTotalOut();
458 return 0;
459 }
460 };
461 default:
462 throw new ZipException("Unknown compression method " + method);

Callers

nothing calls this directly

Calls 1

getTotalOutMethod · 0.80

Tested by

no test coverage detected