Can't call Kotlin built-in Throwable

This commit is contained in:
Nikolay Krasko
2014-09-30 20:40:20 +04:00
parent 4ca39e8f9a
commit f7c1802fb7
@@ -33,7 +33,7 @@ public fun warnTimeConsuming(logger: Logger) {
}
logger.warn("This operation is time consuming and must not be called on EDT.")
Throwable().printStackTrace()
java.lang.Throwable().printStackTrace()
}
public fun runReadAction<T: Any>(action: () -> T?): T? {