Whe calling methods that produces side effects, the Scala notation suggest to
use empty parens.
In ScalaFX side effects are not using this notation.
For example the scalafx.event.Event has a consume method with signature
def consume = delegate.consume
It should be
def consume() = delegate.consume
To be called .consume()
Original issue reported on code.google.com by dae...@gmail.com on 24 Sep 2013 at 2:56
Original issue reported on code.google.com by
dae...@gmail.com
on 24 Sep 2013 at 2:56