still wip

This commit is contained in:
minjaesong
2021-10-11 19:02:51 +09:00
parent ef603ec5d5
commit 8dbedd270e
11 changed files with 40 additions and 35 deletions

View File

@@ -72,7 +72,10 @@ object ThreadExecutor {
}
fun killAll() {
executor.shutdownNow()
try {
executor.shutdownNow()
}
catch (e: UninitializedPropertyAccessException) {}
}
}