Drop deprecated toGenerator and toLinkedList.

This commit is contained in:
Ilya Gorbunov
2015-11-22 09:31:12 +03:00
parent c485eda1c2
commit 77f69abca4
6 changed files with 0 additions and 121 deletions
@@ -104,13 +104,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)
include(CharSequences)