mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
prefer expected type generics suggestions in java completion, overwrite existing type arguments (IDEA-145119)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import java.util.*;
|
||||
|
||||
class Foo {
|
||||
|
||||
void bar() {
|
||||
Map<Integer, String> a = new HashMap<Integer, String>(<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import java.util.*;
|
||||
|
||||
class Foo {
|
||||
|
||||
void bar() {
|
||||
Map<Integer, String> a = new HashMap<<caret>, String>();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user