11a3482970
#KT-38632 Fixed
8 lines
285 B
Plaintext
Vendored
8 lines
285 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'flatMap{}.firstOrNull{}'"
|
|
// INTENTION_TEXT_2: "Replace with 'asSequence().flatMap{}.firstOrNull{}'"
|
|
fun foo(list: List<String>): String? {
|
|
<caret>return list
|
|
.flatMap { it.lines() }
|
|
.firstOrNull { !it.isBlank() }
|
|
} |