mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
display in completion the explicit method type arguments that will be inserted
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class Zoo2 {
|
||||
{
|
||||
foo(Key<caret>, true);
|
||||
}
|
||||
|
||||
<T> void foo(Key<T> f, T b) { }
|
||||
}
|
||||
|
||||
class Key<T> {
|
||||
static <T> Key<T> create() {}
|
||||
}
|
||||
@@ -6,7 +6,7 @@ class Foo {
|
||||
<T> void putUserData(Key<T> key, T value) {}
|
||||
|
||||
{
|
||||
putUserData(Key.<Object>create(<caret>), )
|
||||
putUserData(Key.create(<caret>), )
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user