Cleanup unused stuff and fix detekt issues

This commit is contained in:
Marvin Elsen 2024-11-06 18:13:08 +01:00
parent 8976165b27
commit 79182f165c
Signed by: marvinelsen
GPG Key ID: 820672408CC318C2
2 changed files with 1 additions and 8 deletions

View File

@ -2,4 +2,4 @@ package com.marvinelsen.willow
fun main(args: Array<String>) {
actualMain(args)
}
}

View File

@ -1,7 +0,0 @@
package com.marvinelsen.willow.ui.util
import javafx.concurrent.Task
fun <T> task(block: () -> T) = object : Task<T>() {
override fun call() = block()
}