Files
kotlin-fork/idea/testData/quickfix/redundantIf/simple.kt
T
2016-05-23 20:21:46 +02:00

8 lines
169 B
Kotlin
Vendored

// "Remove redundant 'if' statement" "true"
fun bar(value: Int): Boolean {
<caret>if (value % 2 == 0) {
return true
} else {
return false
}
}