Remove useless functions

This commit is contained in:
Him188 2019-12-19 18:06:08 +08:00
parent e9ae6b2d17
commit b131920a9c

View File

@ -1,13 +1,9 @@
package test
import net.mamoe.mirai.network.data.LoginResult
@Suppress("RedundantSuspendModifier")
suspend fun suspendPrintln(arg: String) = println(arg)
suspend fun main() {
suspendPrintln("Hello")
suspendPrintln(" World!")
}
fun getLoginResult(): LoginResult = LoginResult.SUCCESS
}