41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
17 lines
284 B
Kotlin
17 lines
284 B
Kotlin
public object RefreshQueue {
|
|
private val workerThread: Thread = Thread(object : Runnable {
|
|
override fun run() {
|
|
workerThread.isInterrupted()
|
|
}
|
|
});
|
|
|
|
{
|
|
workerThread.start()
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
RefreshQueue
|
|
return "OK"
|
|
}
|