Don't show KDoc references in Call Hierarchy

^KT-39558 Fixed
This commit is contained in:
Nikita Bobko
2020-06-12 18:55:18 +03:00
parent a79efd0768
commit b43ff7fbf9
4 changed files with 22 additions and 1 deletions
@@ -0,0 +1,2 @@
<node text="K.persist() ()" base="true">
</node>
@@ -0,0 +1,12 @@
open class K {
public fun <caret>persist() {}
}
class Foo : K() {
/**
* [persist]
*/
fun foo() {
}
}