mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-14 15:03:15 +07:00
java: redundant explicit types: do not check parent call when expected type is known (IDEA-242819)
GitOrigin-RevId: c1df310c5834f632a02c09adf5126c7c75a3de81
This commit is contained in:
committed by
intellij-monorepo-bot
parent
34afcc0b0d
commit
3a27230112
+12
@@ -0,0 +1,12 @@
|
||||
// "Replace with <>" "true"
|
||||
import java.util.*;
|
||||
|
||||
class MyTest {
|
||||
private static void foo() {
|
||||
Map<String, List<Integer>> radinv = new TreeMap<>();
|
||||
List<Integer> idxs = null;
|
||||
radinv.put("null", idxs = new ArrayList<>());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Replace with <>" "true"
|
||||
import java.util.*;
|
||||
|
||||
class MyTest {
|
||||
private static void foo() {
|
||||
Map<String, List<Integer>> radinv = new TreeMap<>();
|
||||
List<Integer> idxs = null;
|
||||
radinv.put("null", idxs = new ArrayList<Int<caret>eger>());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user