filter out references in javadoc to fix IDEA-185139 A method's call hierarchy shows also references

This commit is contained in:
Alexey Kudravtsev
2020-06-12 18:16:15 +03:00
committed by Nikita Bobko
parent 89aa15c419
commit a79efd0768
5 changed files with 24 additions and 2 deletions
@@ -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;
}
}