报告对同一实例上未使用 this 限定的非 static 方法的调用。

示例:

  class Foo {
    void bar() {}

    void foo() {
      bar();
    }
  }

在应用快速修复后:

  class Foo {
    void bar() {}

    void foo() {
      this.bar();
    }
  }