Files
kotlin-fork/idea/testData/inspectionsLocal/replaceNegatedIsEmptyWithIsNotEmpty/stringIsBlank.kt.after
T
2020-09-03 14:20:35 +02:00

6 lines
174 B
Plaintext
Vendored

// PROBLEM: Replace negated 'isBlank' with 'isNotBlank'
// FIX: Replace negated 'isBlank' with 'isNotBlank'
// WITH_RUNTIME
fun test(s: String) {
val b = s.isNotBlank()
}