From 0bfb1faf55ac076ff4245e4c6e1fec215e11b12f Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 17 Apr 2020 18:49:21 +0300 Subject: [PATCH] Suppress doc generation for ThreadLocal and SharedImmutable type aliases The aliased types are still searchable. (cherry picked from commit 4f6d73964a55188e02162ba7c643961056b3d8cb) --- runtime/src/main/kotlin/kotlin/native/Annotations.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/src/main/kotlin/kotlin/native/Annotations.kt b/runtime/src/main/kotlin/kotlin/native/Annotations.kt index cf8897d623a..a5dc4825526 100644 --- a/runtime/src/main/kotlin/kotlin/native/Annotations.kt +++ b/runtime/src/main/kotlin/kotlin/native/Annotations.kt @@ -36,8 +36,10 @@ public annotation class RetainForTarget(val target: String) @Deprecated("Use common kotlin.Throws annotation instead.", ReplaceWith("kotlin.Throws"), DeprecationLevel.WARNING) public typealias Throws = kotlin.Throws +/** @suppress */ public typealias ThreadLocal = kotlin.native.concurrent.ThreadLocal +/** @suppress */ public typealias SharedImmutable = kotlin.native.concurrent.SharedImmutable /**