Remove inline modifier for val bot

This commit is contained in:
Him188 2019-11-29 22:53:29 +08:00
parent 2a37904021
commit a8c67bc23e

View File

@ -39,7 +39,7 @@ internal expect val NetworkDispatcher: CoroutineDispatcher
*
* @see BotNetworkHandler
*/
internal class TIMBotNetworkHandler internal constructor(coroutineContext: CoroutineContext, override inline val bot: Bot) :
internal class TIMBotNetworkHandler internal constructor(coroutineContext: CoroutineContext, override val bot: Bot) :
BotNetworkHandler<TIMBotNetworkHandler.BotSocketAdapter>, CoroutineScope {
override val supervisor: CompletableJob = SupervisorJob(coroutineContext[Job])