単一のステートメントに単純化できる if ステートメントを報告します。
if
例:
fun test() { if (foo()) { return true } else { return false } }
クイックフィックス適用後:
fun test() { return foo() }