organize imports & code formatting

This commit is contained in:
honfika
2014-08-15 15:42:37 +02:00
parent 35386fb241
commit f84e4d7336
11 changed files with 31 additions and 32 deletions

View File

@@ -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;
}