mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
expand diamonds on introduce parameter (IDEA-74059)
This commit is contained in:
@@ -6,4 +6,8 @@ class Test {
|
||||
List<String> lss = anObject;
|
||||
List<Integer> li = new ArrayList<>();
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo(new ArrayList<String>());
|
||||
}
|
||||
}
|
||||
@@ -6,4 +6,8 @@ class Test {
|
||||
List<String> lss = new ArrayList<>();
|
||||
List<Integer> li = new ArrayList<>();
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user