mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
suggest to fill all the required type arguments at once (IDEA-26763)
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
class HashMap<T,V> {}
|
||||
|
||||
public class A {
|
||||
private HashMap<String, String> m = new HashMap<String, String><caret>();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class HashMap<T,V> {}
|
||||
|
||||
public class A {
|
||||
private HashMap<String, String> m = new HashMap<<caret>>();
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class AAAAA<K,V,G>{
|
||||
AAAAA<K,V,?> asd = new AAAAA<K, <caret>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class AAAAA<K,V,G>{
|
||||
AAAAA<K,V,?> asd = new AAAAA<<caret>
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class AAAAA<K,V>{
|
||||
AAAAA<K,V> asd = new AAAAA<K, <caret>
|
||||
AAAAA<K,V> asd = new AAAAA<K, V><caret>
|
||||
}
|
||||
+3
-3
@@ -909,9 +909,9 @@ public class SmartTypeCompletionTest extends LightFixtureCompletionTestCase {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testExcessiveTail() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
public void testExcessiveTail() throws Exception { doTest(); }
|
||||
public void testSeveralTypeArguments() throws Exception { doTest(); }
|
||||
public void testSeveralTypeArgumentsSomeUnknown() throws Exception { doTest(); }
|
||||
|
||||
public void testExtendsInTypeCast() throws Exception {
|
||||
doTest();
|
||||
|
||||
Reference in New Issue
Block a user