| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected