Remove unneeded suppressions
This commit is contained in:
@@ -602,7 +602,6 @@ public header inline fun <T, K> Iterable<T>.groupingBy(crossinline keySelector:
|
||||
* Returns a list containing the results of applying the given [transform] function
|
||||
* to each element in the original collection.
|
||||
*/
|
||||
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
||||
public header inline fun <T, R> Iterable<T>.map(transform: (T) -> R): List<R>
|
||||
|
||||
/**
|
||||
@@ -611,7 +610,6 @@ public header inline fun <T, R> Iterable<T>.map(transform: (T) -> R): List<R>
|
||||
* @param [transform] function that takes the index of an element and the element itself
|
||||
* and returns the result of the transform applied to the element.
|
||||
*/
|
||||
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
||||
public header inline fun <T, R> Iterable<T>.mapIndexed(transform: (index: Int, T) -> R): List<R>
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user