From 6407b9d01802d4fc25c1be1ecf86f22984e06dee Mon Sep 17 00:00:00 2001 From: Alexander Sysoev Date: Tue, 5 Nov 2024 16:57:35 +0100 Subject: [PATCH] Fix for KT-41082 (#225) --- core/src/commonMain/kotlin/kotlinx/rpc/annotations/Rpc.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/commonMain/kotlin/kotlinx/rpc/annotations/Rpc.kt b/core/src/commonMain/kotlin/kotlinx/rpc/annotations/Rpc.kt index 3b9dab8f..04566ee8 100644 --- a/core/src/commonMain/kotlin/kotlinx/rpc/annotations/Rpc.kt +++ b/core/src/commonMain/kotlin/kotlinx/rpc/annotations/Rpc.kt @@ -39,5 +39,5 @@ import kotlinx.rpc.RemoteService * @see [RemoteService] */ @Target(AnnotationTarget.CLASS) -@Retention(AnnotationRetention.RUNTIME) +//@Retention(AnnotationRetention.RUNTIME) // Runtime is the default retention, also see KT-41082 public annotation class Rpc