Apply autofixes
This commit is contained in:
parent
5357da3746
commit
dd6ee1bf60
15 changed files with 36 additions and 30 deletions
|
@ -279,10 +279,10 @@ class NBTAccountant {
|
|||
static void leaveTag(Tag tag) {
|
||||
if (tag is CompoundTag || tag is ListTag) {
|
||||
if (tag is CompoundTag) {
|
||||
CompoundTag ct = tag as CompoundTag;
|
||||
CompoundTag ct = tag;
|
||||
ct.endPrettyPrint(_prettyIndex);
|
||||
} else if (tag is ListTag) {
|
||||
ListTag lt = tag as ListTag;
|
||||
ListTag lt = tag;
|
||||
lt.endPrettyPrint(_prettyIndex);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue