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

Method skipBytes

classpath/java/io/DataInputStream.java:124–131  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

122 }
123
124 public int skipBytes(int n) throws IOException {
125 for (int count = 0; count < n; ++count) {
126 if (read() < 0) {;
127 return count;
128 }
129 }
130 return n;
131 }
132}

Callers

nothing calls this directly

Calls 1

readMethod · 0.95

Tested by

no test coverage detected