formatting & imports

This commit is contained in:
Jindra Petk
2013-03-23 13:29:18 +01:00
parent 066a04a113
commit 60a8549192
11 changed files with 35 additions and 43 deletions

View File

@@ -292,15 +292,14 @@ public class Graph {
}
Stack<GraphTargetItem> stack = new Stack<GraphTargetItem>();
List<GraphTargetItem> ret = printGraph(localData, stack, allParts, null, heads.get(0), null, new ArrayList<Loop>(), new HashMap<Loop, List<GraphTargetItem>>());
finalProcessStack(stack,ret);
finalProcessStack(stack, ret);
finalProcessAll(ret, 0);
return ret;
}
public void finalProcessStack(Stack<GraphTargetItem> stack,List<GraphTargetItem> output){
public void finalProcessStack(Stack<GraphTargetItem> stack, List<GraphTargetItem> output) {
}
private void finalProcessAll(List<GraphTargetItem> list, int level) {
finalProcess(list, level);
for (GraphTargetItem item : list) {