Remove auto-generated stubs

This commit is contained in:
Him188 2019-12-24 00:39:52 +08:00
parent 33ab0c820e
commit 717ef85ec0
2 changed files with 11 additions and 11 deletions

View File

@ -25,10 +25,10 @@ internal abstract class QQAndroidBotBase constructor(
context: CoroutineContext context: CoroutineContext
) : BotImpl<QQAndroidBotNetworkHandler>(account, logger, context) { ) : BotImpl<QQAndroidBotNetworkHandler>(account, logger, context) {
override val qqs: ContactList<QQ> override val qqs: ContactList<QQ>
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates. get() = TODO("not implemented")
override fun getQQ(id: Long): QQ { override fun getQQ(id: Long): QQ {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override fun createNetworkHandler(coroutineContext: CoroutineContext): QQAndroidBotNetworkHandler { override fun createNetworkHandler(coroutineContext: CoroutineContext): QQAndroidBotNetworkHandler {
@ -36,33 +36,33 @@ internal abstract class QQAndroidBotBase constructor(
} }
override val groups: ContactList<Group> override val groups: ContactList<Group>
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates. get() = TODO("not implemented")
override suspend fun getGroup(id: GroupId): Group { override suspend fun getGroup(id: GroupId): Group {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun getGroup(internalId: GroupInternalId): Group { override suspend fun getGroup(internalId: GroupInternalId): Group {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun getGroup(id: Long): Group { override suspend fun getGroup(id: Long): Group {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun login(configuration: BotConfiguration) { override suspend fun login(configuration: BotConfiguration) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun Image.getLink(): ImageLink { override suspend fun Image.getLink(): ImageLink {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun addFriend(id: Long, message: String?, remark: String?): AddFriendResult { override suspend fun addFriend(id: Long, message: String?, remark: String?): AddFriendResult {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun approveFriendAddRequest(id: Long, remark: String?) { override suspend fun approveFriendAddRequest(id: Long, remark: String?) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
} }

View File

@ -11,7 +11,7 @@ internal class QQAndroidBotNetworkHandler(override val bot: QQAndroidBot) : BotN
override val supervisor: CompletableJob = SupervisorJob(bot.coroutineContext[Job]) override val supervisor: CompletableJob = SupervisorJob(bot.coroutineContext[Job])
override suspend fun login() { override suspend fun login() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates. TODO("not implemented")
} }
override suspend fun awaitDisconnection() { override suspend fun awaitDisconnection() {