mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
IDEA-162456 Auto-completion of generic class parameters inside javadoc comment
GitOrigin-RevId: abdb5b0b1cb155fb156a9feb6f05b82be4dced69
This commit is contained in:
committed by
intellij-monorepo-bot
parent
fa66a98490
commit
ac1c2422ab
@@ -3,5 +3,5 @@ class C{
|
||||
/**
|
||||
* @param <caret>
|
||||
*/
|
||||
private int foo(int a, char b, String c) {}
|
||||
private <A, B> int foo(int a, char b, String c) {}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
class C{
|
||||
|
||||
/**
|
||||
* @param <<caret>
|
||||
*/
|
||||
private <A, B> int foo(int a, char b, String c) {}
|
||||
}
|
||||
Reference in New Issue
Block a user