diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/event/Subscribable.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/event/Subscribable.kt index fcc93b391..b2ffc0fb3 100644 --- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/event/Subscribable.kt +++ b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/event/Subscribable.kt @@ -57,7 +57,6 @@ interface Cancellable : Subscribable { * 广播一个事件的唯一途径. */ suspend fun E.broadcast(): E { - @Suppress("EXPERIMENTAL_API_USAGE") this@broadcast.broadcastInternal() // inline, no extra cost return this }