プロパティの冗長な getter を報告します。
例:
class Test { val a = 1 get val b = 1 get() = field }
クイックフィックス適用後:
class Test { val a = 1 val b = 1 }