#101 AS1/2 loop fix

This commit is contained in:
Jindra Petk
2013-06-09 19:55:00 +02:00
parent 1483379b85
commit 963ff4a06f
3 changed files with 7 additions and 4 deletions

View File

@@ -349,6 +349,9 @@ public class Graph {
}
private void processIfs(List<GraphTargetItem> list) {
if (true) {
return;
}
for (int i = 0; i < list.size(); i++) {
GraphTargetItem item = list.get(i);
if (item instanceof Block) {