报告冗余属性 getter。
示例:
class Test { val a = 1 get val b = 1 get() = field }
在应用快速修复后:
class Test { val a = 1 val b = 1 }