#35 Unicode strings fix

This commit is contained in:
Jindra Petk
2013-03-02 09:27:48 +01:00
parent b85b396b2a
commit 463180f31e
12 changed files with 66 additions and 58 deletions

View File

@@ -63,7 +63,7 @@ public class ActionGraph extends Graph {
}
@Override
protected void finalProcess(List<GraphTargetItem> list,int level) {
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(loops.size(),null, next);
Loop currentLoop = new Loop(loops.size(), null, next);
loops.add(currentLoop);
//switchLoc.getNextPartPath(new ArrayList<GraphPart>());
List<Integer> valuesMapping = new ArrayList<Integer>();