Search code examples
javaintellij-ideaintellij-plugin

IntelliJ IDEA: how to ignore "@see comments" javadoc in method hierarchy?


package p;

public abstract class A { abstract void a(); }

class A1Impl extends A {

    /** @see A#a() */
    @Override void a() { } } // cursor on a() in A1Impl, ctrl+alt+h,show method hierarchy

class A2Impl extends A {

    /** @see A#a() */
    @Override void a() { } }

class Caller {

    void call(A1Impl a) {
        a.a();
    }
}

enter image description here

cursor on a() in A1Impl, ctrl+alt+h,show method hierarchy, how to set to not show the other 2 irrelevant caller in the selects red box but not remote the @see .. in codes?


Solution

  • Please see/comment/follow related issue at YouTrack: https://youtrack.jetbrains.com/issue/IDEA-185139