MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / List

Class List

src/main/java/net/minecraft/nbt/JsonToNBT.java:415–435  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

413 }
414
415 static class List extends JsonToNBT.Any
416 {
417 protected java.util.List<JsonToNBT.Any> field_150492_b = Lists.<JsonToNBT.Any>newArrayList();
418
419 public List(String json)
420 {
421 this.json = json;
422 }
423
424 public NBTBase parse() throws NBTException
425 {
426 NBTTagList nbttaglist = new NBTTagList();
427
428 for (JsonToNBT.Any jsontonbt$any : this.field_150492_b)
429 {
430 nbttaglist.appendTag(jsontonbt$any.parse());
431 }
432
433 return nbttaglist;
434 }
435 }
436
437 static class Primitive extends JsonToNBT.Any
438 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected