Fixing FIXME to rename isShutdown to isTerminated

This commit is contained in:
Viktor Klang 2011-11-23 19:03:56 +01:00
parent 7d9a124b64
commit c56341b3a6
17 changed files with 45 additions and 46 deletions

View file

@ -281,7 +281,7 @@ private[akka] case class RemoteActorRef private[akka] (
def address = remoteAddress + path.toString
def isShutdown: Boolean = !running
def isTerminated: Boolean = !running
protected[akka] def sendSystemMessage(message: SystemMessage): Unit = unsupported