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:
commit
55dc5106a4
40 changed files with 110 additions and 110 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue