MCPcopy Create free account
hub / github.com/Garten/sourcecraft / skipLongArray

Method skipLongArray

src/minecraft/reader/nbt/NbtReader.java:112–117  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

110 }
111
112 public void skipLongArray() throws IOException {
113 int length = this.stream.readInt();
114 for (int i = 0; i < length; i++) {
115 this.stream.readLong();
116 }
117 }
118
119 public void skipIntArray() throws IOException {
120 int length = this.stream.readInt();

Callers 1

skipTagAfterTitleMethod · 0.95

Calls 2

readIntMethod · 0.80
readLongMethod · 0.80

Tested by

no test coverage detected