From f0e8deab68f163348a848080026aecc005ce6a6e Mon Sep 17 00:00:00 2001 From: Him188 Date: Sat, 2 May 2020 18:07:41 +0800 Subject: [PATCH] Remove unused files --- .../net.mamoe.mirai/data/AddFriendResult.kt | 55 ------------------- .../net.mamoe.mirai/data/FriendNameRemark.kt | 18 ------ .../net.mamoe.mirai/data/PreviousNameList.kt | 26 --------- .../kotlin/net.mamoe.mirai/data/Profile.kt | 6 +- 4 files changed, 2 insertions(+), 103 deletions(-) delete mode 100644 mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/AddFriendResult.kt delete mode 100644 mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/FriendNameRemark.kt delete mode 100644 mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/PreviousNameList.kt diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/AddFriendResult.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/AddFriendResult.kt deleted file mode 100644 index 4d1440168..000000000 --- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/AddFriendResult.kt +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright 2020 Mamoe Technologies and contributors. - * - * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证. - * Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link. - * - * https://github.com/mamoe/mirai/blob/master/LICENSE - */ - -@file:JvmMultifileClass -@file:JvmName("BotHelperKt") -@file:Suppress("EXPERIMENTAL_API_USAGE") - -package net.mamoe.mirai.data - -import net.mamoe.mirai.utils.MiraiExperimentalAPI -import kotlin.jvm.JvmMultifileClass -import kotlin.jvm.JvmName - - -@MiraiExperimentalAPI -@Suppress("ClassName") -sealed class AddFriendResult { - abstract class DONE internal constructor() : AddFriendResult() { - override fun toString(): String = "AddFriendResult(Done)" - } - - /** - * 对方拒绝添加好友 - */ - object REJECTED : AddFriendResult() { - override fun toString(): String = "AddFriendResult(Rejected)" - } - - /** - * 这个人已经是好友 - */ - object ALREADY_ADDED : DONE() { - override fun toString(): String = "AddFriendResult(AlreadyAdded)" - } - - /** - * 等待对方同意 - */ - object WAITING_FOR_APPROVAL : DONE() { - override fun toString(): String = "AddFriendResult(WaitingForApproval)" - } - - /** - * 成功添加 (只在对方设置为允许任何人直接添加为好友时才会获得这个结果) - */ - object ADDED : DONE() { - override fun toString(): String = "AddFriendResult(Added)" - } -} \ No newline at end of file diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/FriendNameRemark.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/FriendNameRemark.kt deleted file mode 100644 index ff83401af..000000000 --- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/FriendNameRemark.kt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright 2020 Mamoe Technologies and contributors. - * - * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证. - * Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link. - * - * https://github.com/mamoe/mirai/blob/master/LICENSE - */ - -package net.mamoe.mirai.data - -import net.mamoe.mirai.utils.MiraiExperimentalAPI - -/** - * 给好友设置的备注 - */ -@MiraiExperimentalAPI -inline class FriendNameRemark(val value: String) diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/PreviousNameList.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/PreviousNameList.kt deleted file mode 100644 index 3230baea1..000000000 --- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/PreviousNameList.kt +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2020 Mamoe Technologies and contributors. - * - * 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证. - * Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link. - * - * https://github.com/mamoe/mirai/blob/master/LICENSE - */ - -package net.mamoe.mirai.data - -import net.mamoe.mirai.utils.MiraiExperimentalAPI - -/** - * 曾用名列表 - * - * 曾用名可能是: - * - 昵称 - * - 共同群内的群名片 - */ -@MiraiExperimentalAPI -class PreviousNameList( - list: List -) : List by list { - override fun toString(): String = this.joinToString(prefix = "PreviousNameList(", postfix = ")", separator = ", ") -} \ No newline at end of file diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/Profile.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/Profile.kt index 5f06f028f..1705578f7 100644 --- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/Profile.kt +++ b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/data/Profile.kt @@ -11,9 +11,7 @@ package net.mamoe.mirai.data -import io.ktor.util.date.GMTDate -import net.mamoe.mirai.utils.MiraiExperimentalAPI - +/* /** * 个人资料 */ @@ -61,4 +59,4 @@ enum class Gender(val value: Byte) { SECRET(0), MALE(1), FEMALE(2) -} \ No newline at end of file +}*/ \ No newline at end of file