6 lines
88 B
Kotlin
Vendored
6 lines
88 B
Kotlin
Vendored
fun test(list: MutableList<String>) {
|
|
list.removeAll {
|
|
it.isEmpty()
|
|
}
|
|
}
|