Why does `Task<T>.success()` do `Platform.ru...
# tornadofx
r
Why does
Task<T>.success()
do
Platform.runLater { setOnSucceeded { func(value) } }
and not
setOnSucceeded { Platform.runLater { func(value) } }
?