Drop deprecated FunctionalList, FunctionalQueue.

Remove dependency on FunctionalList from tests.
This commit is contained in:
Ilya Gorbunov
2015-07-08 20:32:37 +03:00
parent 0a320a13e5
commit 4de5dd9aeb
8 changed files with 9 additions and 113 deletions
@@ -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)
}
@@ -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