7 lines
191 B
Plaintext
Vendored
7 lines
191 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'firstOrNull{}'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(array: Array<String>): String? {
|
|
<caret>return array.firstOrNull { it.isNotBlank() }
|
|
}
|