Merge pull request #417 from akka/issue-2019

closes #2019: Use parentheses for arity-0 methods which are not referent...
This commit is contained in:
viktorklang 2012-04-27 06:46:44 -07:00
commit 55dc5106a4
40 changed files with 110 additions and 110 deletions

View file

@ -212,7 +212,7 @@ class RemoteActorRefProvider(
}
trait RemoteRef extends ActorRefScope {
final def isLocal = false
final def isLocal() = false
}
/**
@ -238,7 +238,7 @@ private[akka] class RemoteActorRef private[akka] (
@volatile
private var running: Boolean = true
def isTerminated: Boolean = !running
def isTerminated(): Boolean = !running
def sendSystemMessage(message: SystemMessage): Unit = remote.send(message, None, this)