Adjust testData to CharSequence.length transformation
This commit is contained in:
committed by
Mikhail Glukhikh
parent
cb562e7ea5
commit
f0e3fd617d
Vendored
+1
-1
@@ -8,7 +8,7 @@ fun Int.newFun(): Int = this
|
||||
fun foo(list: List<String>): Int {
|
||||
return list
|
||||
.filter { it.isNotEmpty() }
|
||||
.map { it.length() }
|
||||
.map { it.length }
|
||||
.first()
|
||||
.<caret>oldFun()
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -8,7 +8,7 @@ fun Int.newFun(): Int = this
|
||||
fun foo(list: List<String>): Int {
|
||||
return list
|
||||
.filter { it.isNotEmpty() }
|
||||
.map { it.length() }
|
||||
.map { it.length }
|
||||
.first()
|
||||
.<caret>newFun()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user