this
static
例:
class Foo { void bar() {} void foo() { bar(); } }
クイックフィックス適用後:
class Foo { void bar() {} void foo() { this.bar(); } }