AS3: ignore return void at the end of the method

AS3: ABC - find by class & method
This commit is contained in:
Jindra Pet��k
2013-02-28 22:07:06 +01:00
parent 53a94317a7
commit 743cf62b85
5 changed files with 50 additions and 16 deletions
@@ -63,7 +63,7 @@ public class ActionGraph extends Graph {
}
@Override
protected void finalProcess(List<GraphTargetItem> list) {
protected void finalProcess(List<GraphTargetItem> list,int level) {
List<GraphTargetItem> ret = Action.checkClass(list);
if (ret != list) {
list.clear();
@@ -178,7 +178,7 @@ public class ActionGraph extends Graph {
next = breakPart;
GraphTargetItem ti = checkLoop(next, stopPart, loops);
Loop currentLoop = new Loop(null, next);
Loop currentLoop = new Loop(loops.size(),null, next);
loops.add(currentLoop);
//switchLoc.getNextPartPath(new ArrayList<GraphPart>());
List<Integer> valuesMapping = new ArrayList<Integer>();