Lots and lots of work to get things to compile without warnings

This commit is contained in:
Viktor Klang 2012-06-13 15:44:24 +02:00
parent 6b468d8856
commit 4ee2033761
12 changed files with 51 additions and 46 deletions

View file

@ -223,8 +223,7 @@ private[akka] object MessageDispatcher {
def printActors: Unit = if (debug) {
for {
d actors.keys
val c = println(d + " inhabitants: " + d.inhabitants)
a actors.valueIterator(d)
a { println(d + " inhabitants: " + d.inhabitants); actors.valueIterator(d) }
} {
val status = if (a.isTerminated) " (terminated)" else " (alive)"
val messages = a match {