Drop deprecated FunctionalList, FunctionalQueue.
Remove dependency on FunctionalList from tests.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package to
|
||||
|
||||
import kotlin.concurrent.FunctionalList
|
||||
import kotlin.properties.ObservableProperty
|
||||
|
||||
fun f(l: FunctionalList<Int>) {}
|
||||
fun f(l: ObservableProperty<Int>) {}
|
||||
@@ -1,2 +1,2 @@
|
||||
kotlin.Int
|
||||
kotlin.concurrent.FunctionalList
|
||||
kotlin.properties.ObservableProperty
|
||||
|
||||
+2
-2
@@ -2,6 +2,6 @@
|
||||
|
||||
package g
|
||||
|
||||
import kotlin.concurrent.FunctionalList
|
||||
import kotlin.properties.ObservableProperty
|
||||
|
||||
<selection>fun f(l: FunctionalList<Int>) {}</selection>
|
||||
<selection>fun f(l: ObservableProperty<Int>) {}</selection>
|
||||
@@ -1,4 +1,4 @@
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.concurrent.FunctionalList<Int>>) {
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
ba<caret>r(c)
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,8 +1,8 @@
|
||||
import kotlin.concurrent.FunctionalList
|
||||
import kotlin.properties.ObservableProperty
|
||||
import kotlin.support.AbstractIterator
|
||||
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.concurrent.FunctionalList<Int>>) {
|
||||
bar<AbstractIterator<FunctionalList<Int>>>(c)
|
||||
fun foo(c: kotlin.support.AbstractIterator<kotlin.properties.ObservableProperty<Int>>) {
|
||||
bar<AbstractIterator<ObservableProperty<Int>>>(c)
|
||||
}
|
||||
|
||||
fun <T> bar(t: T): T = t
|
||||
|
||||
Reference in New Issue
Block a user