불필요한 프로퍼티 getter를 보고합니다.
예:
class Test { val a = 1 get val b = 1 get() = field }
빠른 수정을 적용한 후:
class Test { val a = 1 val b = 1 }