mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
IDEA-CR-53066 java smart completion: autoinsert likely generic methods
GitOrigin-RevId: 6dcca0e0c39758de0a9c3bb77ded8b2c61ad4cf0
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d58509eecb
commit
9007758412
+6
@@ -0,0 +1,6 @@
|
||||
abstract class K<T> {
|
||||
protected abstract T get();
|
||||
private void m() {
|
||||
T t = get();<caret>
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
abstract class K<T> {
|
||||
protected abstract T get();
|
||||
private void m() {
|
||||
T t = g<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user