From 0b33041a726872b5b860fa6053f459a2eb74b71f Mon Sep 17 00:00:00 2001 From: Akihiro Urushiara Date: Wed, 3 Jan 2024 17:48:43 +0900 Subject: [PATCH] remove name annotations. --- .../atproto/identity/IdentityResolveHandleResponse.kt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/src/commonMain/kotlin/work/socialhub/kbsky/api/entity/atproto/identity/IdentityResolveHandleResponse.kt b/core/src/commonMain/kotlin/work/socialhub/kbsky/api/entity/atproto/identity/IdentityResolveHandleResponse.kt index ffc8940..f2c0d59 100644 --- a/core/src/commonMain/kotlin/work/socialhub/kbsky/api/entity/atproto/identity/IdentityResolveHandleResponse.kt +++ b/core/src/commonMain/kotlin/work/socialhub/kbsky/api/entity/atproto/identity/IdentityResolveHandleResponse.kt @@ -1,16 +1,8 @@ package work.socialhub.kbsky.api.entity.atproto.identity import kotlinx.serialization.Serializable -import kotlin.experimental.ExperimentalObjCName -import kotlin.native.ObjCName @Serializable -@OptIn(ExperimentalObjCName::class) -@ObjCName( - name = "KBskyIdentityResolveHandleResponse", - swiftName = "KBskyIdentityResolveHandleResponse", - exact = true -) class IdentityResolveHandleResponse { var did: String? = null }