Drop HIDDEN deprecations from kotlin-stdlib.

This commit is contained in:
Ilya Gorbunov
2017-01-31 22:41:47 +03:00
parent 8e951dee16
commit c0c01d6e49
4 changed files with 0 additions and 24 deletions
@@ -1,10 +0,0 @@
@file:JvmName("StandardJRE7Kt")
package kotlin
// TODO: Drop before 1.1
@SinceKotlin("1.1")
@PublishedApi
@Deprecated("Provided for binary compatibility")
@JvmName("closeSuppressed")
internal fun AutoCloseable.closeSuppressedDeprecated(cause: Throwable) = closeFinally(cause)
@@ -15,12 +15,6 @@ internal open class PlatformImplementations {
}
}
// TODO: drop before 1.1
@SinceKotlin("1.1")
@PublishedApi
@Deprecated("Provided for binary compatibility", level = DeprecationLevel.HIDDEN)
internal fun platformCloseSuppressed(instance: Closeable, cause: Throwable) = instance.closeFinally(cause)
@JvmField
internal val IMPLEMENTATIONS: PlatformImplementations = run {