Currently `Platform.runLater` requires closure with `Unit` return type:
def runLater(op: => Unit) ...
This leads to sometimes unnatural code, with last statement there only to
return `Unit`.
Closure with any return type should be acceptable:
def runLater[R](op: => R) ...
Original issue reported on code.google.com by jpsacha on 25 Mar 2014 at 1:25
Original issue reported on code.google.com by
jpsacha
on 25 Mar 2014 at 1:25