クイックフィックスを使用すると、条件が単純化されます。
例:
fun use(arg: Boolean) { if (false == arg) { } }
クイックフィックス適用後:
fun use(arg: Boolean) { if (!arg) { } }