Cleanup deprecated symbol usages in testData
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
fun foo(c : Collection<String>){
|
||||
c.filterTo(ArrayList<String>())<selection>{ it.length() > 1 }</selection>
|
||||
c.filterTo(ArrayList<String>())<selection>{ it.length > 1 }</selection>
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
// WITH_RUNTIME
|
||||
fun foo(c : Collection<String>){
|
||||
val predicate: (String) -> Boolean = { it.length() > 1 }
|
||||
val predicate: (String) -> Boolean = { it.length > 1 }
|
||||
c.filterTo(ArrayList<String>(), predicate)
|
||||
}
|
||||
Reference in New Issue
Block a user