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

Method skipIntArray

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

Source from the content-addressed store, hash-verified

117 }
118
119 public void skipIntArray() throws IOException {
120 int length = this.stream.readInt();
121 for (int i = 0; i < length; i++) {
122 this.stream.readInt();
123 }
124 }
125
126 public int readLength() throws IOException {
127 return this.stream.readInt();

Callers 1

skipTagAfterTitleMethod · 0.95

Calls 1

readIntMethod · 0.80

Tested by

no test coverage detected