Remove redundant @JvmName

This commit is contained in:
Him188 2020-03-24 15:29:52 +08:00
parent a9972dc030
commit 2944b8abd8
2 changed files with 0 additions and 4 deletions

View File

@ -202,5 +202,4 @@ actual abstract class Group : Contact(), CoroutineScope {
actual fun toFullString(): String {
return "Group(id=${this.id}, name=$name, owner=${owner.id}, members=${members.idContentString})"
}
}

View File

@ -23,13 +23,11 @@ import net.mamoe.mirai.message.data.OfflineGroupImage
import net.mamoe.mirai.utils.ExternalImage
import net.mamoe.mirai.utils.MiraiExperimentalAPI
import net.mamoe.mirai.utils.OverFileSizeMaxException
import kotlin.jvm.JvmName
import kotlin.jvm.JvmSynthetic
/**
* . QQ Android 中叫做 "Troop"
*/
@Suppress("INAPPLICABLE_JVM_NAME")
expect abstract class Group() : Contact, CoroutineScope {
/**
* 群名称.
@ -163,7 +161,6 @@ expect abstract class Group() : Contact, CoroutineScope {
*/
@MiraiExperimentalAPI("dangerous")
@Suppress("INAPPLICABLE_JVM_NAME", "FunctionName")
@JvmName("newMember")
abstract fun newMember(memberInfo: MemberInfo): Member
/**