Added parens to stop

This commit is contained in:
Patrik Nordwall 2011-04-12 10:53:56 +02:00
parent 087191f19f
commit 3c8e375f30
40 changed files with 151 additions and 151 deletions

View file

@ -143,7 +143,7 @@ trait MessageDispatcher {
while (i.hasNext()) {
val uuid = i.next()
Actor.registry.actorFor(uuid) match {
case Some(actor) => actor.stop
case Some(actor) => actor.stop()
case None => {}
}
}