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

Method skipBytes

classpath/java/io/RandomAccessFile.java:72–76  ·  view source on GitHub ↗
(int count)

Source from the content-addressed store, hash-verified

70 }
71
72 public int skipBytes(int count) throws IOException {
73 if (position + count > length()) throw new IOException();
74 this.position = position + count;
75 return count;
76 }
77
78 public int read(byte b[], int off, int len) throws IOException {
79 if(b == null)

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.95

Tested by

no test coverage detected