Commit 0a55733c authored by Him188's avatar Him188

Rename `instanceWhose` to `getInstance`

parent 583c9939
...@@ -63,7 +63,7 @@ private data class AuthRetDTO(val code: Int, val session: String) : DTO ...@@ -63,7 +63,7 @@ private data class AuthRetDTO(val code: Int, val session: String) : DTO
private data class BindDTO(override val sessionKey: String, val qq: Long) : VerifyDTO() private data class BindDTO(override val sessionKey: String, val qq: Long) : VerifyDTO()
private fun getBotOrThrow(qq: Long) = try { private fun getBotOrThrow(qq: Long) = try {
Bot.instanceWhose(qq) Bot.getInstance(qq)
} catch (e: NoSuchElementException) { } catch (e: NoSuchElementException) {
throw NoSuchBotException throw NoSuchBotException
} }
\ No newline at end of file
...@@ -59,7 +59,7 @@ abstract class Bot : CoroutineScope { ...@@ -59,7 +59,7 @@ abstract class Bot : CoroutineScope {
* 获取一个 [Bot] 实例, 找不到则 [NoSuchElementException] * 获取一个 [Bot] 实例, 找不到则 [NoSuchElementException]
*/ */
@JvmStatic @JvmStatic
fun instanceWhose(qq: Long): Bot = BotImpl.instanceWhose(qq = qq) fun getInstance(qq: Long): Bot = BotImpl.instanceWhose(qq = qq)
} }
/** /**
......
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