Reports if statements which can be simplified to a single statement.
Example:
fun test() {
if (foo()) {
return true
} else {
return false
}
}
After the quick-fix is applied:
fun test() {
return foo()
}