removed some unnecessarry action reading methods

This commit is contained in:
honfika
2014-08-05 21:39:23 +02:00
parent 254b13a326
commit 5513956f04
7 changed files with 120 additions and 185 deletions
@@ -84,16 +84,6 @@ public class ActionWith extends Action implements GraphSourceItemContainer {
return "With {";
}
@Override
public List<Long> getAllRefs(int version) {
return super.getAllRefs(version);
}
@Override
public List<Action> getAllIfsOrJumps() {
return super.getAllIfsOrJumps();
}
@Override
public void translateContainer(List<List<GraphTargetItem>> content, Stack<GraphTargetItem> stack, List<GraphTargetItem> output, HashMap<Integer, String> regNames, HashMap<String, GraphTargetItem> variables, HashMap<String, GraphTargetItem> functions) {
output.add(new WithActionItem(this, stack.pop(), content.get(0)));