IDEA-210281 Cleanup Gradle settings: separate Runner configurable removed

GitOrigin-RevId: adbc39121fe91beb633e125b4cf39bfe0a422e4b
This commit is contained in:
Anton Makeev
2019-05-06 23:01:12 +02:00
committed by intellij-monorepo-bot
parent 042f6bd9a7
commit c66c8fc54e
11 changed files with 12 additions and 12 deletions

View File

@@ -745,7 +745,7 @@ public class ControlFlowGraph implements CodeConstants {
return res;
}
private static void addToReversePostOrderListIterative(BasicBlock root, List<? super BasicBlock> lst) {
private static void addToReversePostOrderListIterative(BasicBlock root, List<BasicBlock> lst) {
LinkedList<BasicBlock> stackNode = new LinkedList<>();
LinkedList<Integer> stackIndex = new LinkedList<>();