MCPcopy Index your code
hub / github.com/dumbledore/AlbiteREADER / skip

Method skip

src/gnu/zip/ZipFile.java:626–634  ·  view source on GitHub ↗
(long amount)

Source from the content-addressed store, hash-verified

624 }
625
626 public long skip(long amount) throws IOException
627 {
628 if (amount < 0)
629 return 0;
630 if (amount > end - (bufferOffset + pos))
631 amount = end - (bufferOffset + pos);
632 seek(bufferOffset + pos + amount);
633 return amount;
634 }
635
636 void seek(long newpos) throws IOException
637 {

Callers 3

readEntriesMethod · 0.95
getInputStreamMethod · 0.95
closeEntryMethod · 0.45

Calls 1

seekMethod · 0.95

Tested by

no test coverage detected