Commit 2944b8ab authored by Him188's avatar Him188

Remove redundant `@JvmName`

parent a9972dc0
...@@ -202,5 +202,4 @@ actual abstract class Group : Contact(), CoroutineScope { ...@@ -202,5 +202,4 @@ actual abstract class Group : Contact(), CoroutineScope {
actual fun toFullString(): String { actual fun toFullString(): String {
return "Group(id=${this.id}, name=$name, owner=${owner.id}, members=${members.idContentString})" return "Group(id=${this.id}, name=$name, owner=${owner.id}, members=${members.idContentString})"
} }
} }
\ No newline at end of file
...@@ -23,13 +23,11 @@ import net.mamoe.mirai.message.data.OfflineGroupImage ...@@ -23,13 +23,11 @@ import net.mamoe.mirai.message.data.OfflineGroupImage
import net.mamoe.mirai.utils.ExternalImage import net.mamoe.mirai.utils.ExternalImage
import net.mamoe.mirai.utils.MiraiExperimentalAPI import net.mamoe.mirai.utils.MiraiExperimentalAPI
import net.mamoe.mirai.utils.OverFileSizeMaxException import net.mamoe.mirai.utils.OverFileSizeMaxException
import kotlin.jvm.JvmName
import kotlin.jvm.JvmSynthetic import kotlin.jvm.JvmSynthetic
/** /**
* 群. 在 QQ Android 中叫做 "Troop" * 群. 在 QQ Android 中叫做 "Troop"
*/ */
@Suppress("INAPPLICABLE_JVM_NAME")
expect abstract class Group() : Contact, CoroutineScope { expect abstract class Group() : Contact, CoroutineScope {
/** /**
* 群名称. * 群名称.
...@@ -163,7 +161,6 @@ expect abstract class Group() : Contact, CoroutineScope { ...@@ -163,7 +161,6 @@ expect abstract class Group() : Contact, CoroutineScope {
*/ */
@MiraiExperimentalAPI("dangerous") @MiraiExperimentalAPI("dangerous")
@Suppress("INAPPLICABLE_JVM_NAME", "FunctionName") @Suppress("INAPPLICABLE_JVM_NAME", "FunctionName")
@JvmName("newMember")
abstract fun newMember(memberInfo: MemberInfo): Member abstract fun newMember(memberInfo: MemberInfo): Member
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment