From 8010203ee58b4f01ad2a7e3dab75f4c5d0665857 Mon Sep 17 00:00:00 2001 From: Sergey Bogolepov Date: Thu, 25 Aug 2022 17:00:41 +0300 Subject: [PATCH] [K/N] Update Throwable.kt documentation for the new MM --- kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt b/kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt index 257298ebd62..2fea9e051bc 100644 --- a/kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt +++ b/kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt @@ -1,5 +1,5 @@ /* - * Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license + * Copyright 2010-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * that can be found in the LICENSE file. */ @@ -171,7 +171,7 @@ public actual inline fun Throwable.printStackTrace(): Unit = printStackTrace() * Adds the specified exception to the list of exceptions that were * suppressed in order to deliver this exception. * - * Does nothing if this [Throwable] is frozen. + * Legacy MM: does nothing if this [Throwable] is frozen. */ @SinceKotlin("1.4") @OptIn(FreezingIsDeprecated::class)