Revert "closes #2019: Use parentheses for arity-0 methods which are not referentially transparent"

This reverts commit 8dbfbbe966.
This commit is contained in:
Roland 2012-05-03 21:14:47 +02:00
parent 1639028a78
commit afd81d8506
40 changed files with 110 additions and 110 deletions

View file

@ -125,7 +125,7 @@ class DefaultScheduler(hashedWheelTimer: HashedWheelTimer,
def run(timeout: HWTimeout) {
receiver ! message
// Check if the receiver is still alive and kicking before reschedule the task
if (receiver.isTerminated()) {
if (receiver.isTerminated) {
log.debug("Could not reschedule message to be sent because receiving actor has been terminated.")
} else {
scheduleNext(timeout, delay, continuousCancellable)