Make Throwable.printStackTrace() common

#KT-38044
This commit is contained in:
Ilya Gorbunov
2020-04-06 19:58:49 +03:00
parent 408b441a71
commit 38b1e6beab
3 changed files with 15 additions and 1 deletions
@@ -18,7 +18,7 @@ import kotlin.internal.*
*/
@Suppress("EXTENSION_SHADOWED_BY_MEMBER") // to be used when no member available
@kotlin.internal.InlineOnly
public inline fun Throwable.printStackTrace(): Unit = (this as java.lang.Throwable).printStackTrace()
public actual inline fun Throwable.printStackTrace(): Unit = (this as java.lang.Throwable).printStackTrace()
/**
* Prints the [detailed description][Throwable.stackTraceToString] of this throwable to the specified [writer].