mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 18:20:12 +07:00
IDEA-50092 Code completion added unnecessary type arguments
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
class A {
|
||||
void foo(List<String> x){}
|
||||
{
|
||||
foo(Collections.<String>emptyList());<caret>
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
class A {
|
||||
void foo(List<String> x){}
|
||||
{
|
||||
foo(Collections.<String>emptyL<caret>ist());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user