Drop deprecated mapIndexedTo on Maps.

This commit is contained in:
Ilya Gorbunov
2016-01-26 22:08:39 +03:00
parent 744a7a83f7
commit 263e1b4b5d
2 changed files with 1 additions and 14 deletions
@@ -170,8 +170,7 @@ fun mapping(): List<GenericFunction> {
return destination
"""
}
deprecate(Maps) { Deprecation("Use entries.mapIndexedTo instead.", replaceWith = "this.entries.mapIndexedTo(destination, transform)") }
include(Maps, CharSequences)
include(CharSequences)
}
templates add f("mapNotNullTo(destination: C, transform: (T) -> R?)") {