organize imports

This commit is contained in:
Honfika
2013-09-09 21:12:58 +02:00
parent fc7b82b866
commit 624194f453
79 changed files with 140 additions and 157 deletions
@@ -19,6 +19,7 @@ package com.jpexs.decompiler.flash.action.model;
import com.jpexs.decompiler.flash.action.swf5.ActionIncrement;
import com.jpexs.decompiler.flash.ecma.*;
import com.jpexs.decompiler.graph.GraphSourceItem;
import com.jpexs.decompiler.graph.GraphSourceItemPos;
import com.jpexs.decompiler.graph.GraphTargetItem;
import com.jpexs.decompiler.graph.SourceGenerator;
import java.util.ArrayList;
@@ -56,8 +57,8 @@ public class IncrementActionItem extends ActionItem {
}
@Override
public List<com.jpexs.decompiler.graph.GraphSourceItemPos> getNeededSources() {
List<com.jpexs.decompiler.graph.GraphSourceItemPos> ret = super.getNeededSources();
public List<GraphSourceItemPos> getNeededSources() {
List<GraphSourceItemPos> ret = super.getNeededSources();
ret.addAll(object.getNeededSources());
return ret;
}