mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
IDEA-66081 (resolve methods in javadoc by signatures)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package pkg;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @see #method(java.util.List)
|
||||
* @see #method(java.util.List<String>)
|
||||
* @see #method(java.util.List<T>)
|
||||
* @see #method(java.util.List<Number>)
|
||||
*/
|
||||
class A2<T> {
|
||||
public void method(List<String> list) { }
|
||||
}
|
||||
Reference in New Issue
Block a user