Remove unneeded suppressions

This commit is contained in:
Ilya Gorbunov
2017-04-14 17:37:29 +03:00
parent 8f452ed046
commit f22375601b
7 changed files with 2 additions and 13 deletions
@@ -37,7 +37,6 @@ fun mapping(): List<GenericFunction> {
}
typeParam("R")
returns("List<R>")
annotations(Iterables) { """@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")""" }
body(Iterables) {
"return mapIndexedTo(ArrayList<R>(collectionSizeOrDefault(10)), transform)"
}
@@ -65,7 +64,6 @@ fun mapping(): List<GenericFunction> {
}
typeParam("R")
returns("List<R>")
annotations(Iterables) { """@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")""" }
body(Iterables) {
"return mapTo(ArrayList<R>(collectionSizeOrDefault(10)), transform)"
}