冗長な Companion の参照を報告します。
例:
class A {
companion object {
fun create() = A()
}
}
fun test() {
val s = A.Companion.create()
}
クイックフィックス適用後:
class A {
companion object {
fun create() = A()
}
}
fun test() {
val s = A.create()
}