Browse Source

Remove useless functions

Him188 6 years ago
parent
commit
b131920a9c
1 changed files with 1 additions and 5 deletions
  1. 1 5
      mirai-debug/src/main/kotlin/test/JaptTest.kt

+ 1 - 5
mirai-debug/src/main/kotlin/test/JaptTest.kt

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