filter out references in javadoc to fix IDEA-185139 A method's call hierarchy shows also references
This commit is contained in:
committed by
Nikita Bobko
parent
89aa15c419
commit
a79efd0768
+2
@@ -0,0 +1,2 @@
|
||||
<node text="K.persist() ()" base="true">
|
||||
</node>
|
||||
@@ -0,0 +1,3 @@
|
||||
open class K {
|
||||
public fun <caret>persist() {}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class X extends K {
|
||||
/**
|
||||
* see {@link #persist()}
|
||||
*/
|
||||
int f() {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user