修复对获取服务器时间这个接口的解析问题

This commit is contained in:
chenjuntao
2018-12-03 14:59:16 +08:00
parent 22f68d098c
commit cd523bd552
7 changed files with 34 additions and 22 deletions

View File

@ -17,5 +17,9 @@ object AppExecutor {
override fun execute(command: Runnable) {
mainThreadHandler.post(command)
}
fun executeWithDelay(command: Runnable, delay: Long) {
mainThreadHandler.postDelayed(command, delay)
}
}
}