mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
don't show explicit method type parameters in lookups when they won't be inserted
This commit is contained in:
@@ -2,7 +2,11 @@ import java.util.Map;
|
||||
|
||||
public class Foo {
|
||||
|
||||
Set<String> bar() {
|
||||
Map<String, String> s = em<caret>
|
||||
void foo(Map<String, String> map) {
|
||||
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo(em<caret>)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import java.util.Map;
|
||||
|
||||
public class Foo {
|
||||
|
||||
Set<String> bar() {
|
||||
Map<String, String> s = em<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user