(int listTag)
| 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(); |
no test coverage detected