mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 10:31:55 +00:00
organize imports & code formatting
This commit is contained in:
@@ -93,7 +93,7 @@ public class DumpTreeModel implements TreeModel {
|
||||
|
||||
@Override
|
||||
public int getChildCount(Object o) {
|
||||
DumpInfo di = (DumpInfo) o;
|
||||
DumpInfo di = (DumpInfo) o;
|
||||
if (di.tagToResolve != null) {
|
||||
TagStub tagStub = di.tagToResolve;
|
||||
try {
|
||||
@@ -111,7 +111,7 @@ public class DumpTreeModel implements TreeModel {
|
||||
|
||||
@Override
|
||||
public boolean isLeaf(Object o) {
|
||||
DumpInfo di = (DumpInfo) o;
|
||||
DumpInfo di = (DumpInfo) o;
|
||||
return (di.tagToResolve == null) && di.getChildCount() == 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user