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

Method skipListOf

src/minecraft/reader/nbt/NbtReader.java:187–194  ·  view source on GitHub ↗
(int listTag)

Source from the content-addressed store, hash-verified

185 }
186
187 public void skipListOf(int listTag) throws IOException {
188 int listLength = this.readLength();
189 if (listTag != NbtTag.END) {
190 for (int i = 0; i < listLength; i++) {
191 this.skipTagInTagList(listTag);
192 }
193 }
194 }
195
196 public void skipString() throws IOException {
197 int length = this.stream.readUnsignedShort();

Callers 2

skipListMethod · 0.95
readPositionMethod · 0.80

Calls 2

readLengthMethod · 0.95
skipTagInTagListMethod · 0.95

Tested by

no test coverage detected