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,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
View File
@@ -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>