add PECS wildcards to method signatures where necessary and where methods are not overridden by plugins

GitOrigin-RevId: 1ec7f1a1aa17d2d4f42e647207323ab8a3138683
This commit is contained in:
Alexey Kudravtsev
2019-05-13 15:57:11 +03:00
committed by intellij-monorepo-bot
parent f4a63880bc
commit f9c29f0c92
9 changed files with 10 additions and 10 deletions

View File

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