Drop deprecated toGenerator and toLinkedList (again).

This commit is contained in:
Ilya Gorbunov
2016-01-14 23:00:31 +03:00
parent b97e436a50
commit 264c9a0fc9
6 changed files with 0 additions and 121 deletions
@@ -110,13 +110,6 @@ fun snapshots(): List<GenericFunction> {
body { "return this.toArrayList()" }
}
templates add f("toLinkedList()") {
include(Strings)
doc { "Returns a [LinkedList] containing all elements." }
returns("LinkedList<T>")
deprecate { Deprecation("Use toCollection(LinkedList()) instead.", replaceWith = "toCollection(LinkedList())") }
}
templates add f("toMap(selector: (T) -> K)") {
inline(true)
deprecate(Strings) { forBinaryCompatibility }