remove some FIXMEs

some were left-over residue, some were fixed
This commit is contained in:
Roland 2012-10-16 12:06:03 +02:00
parent 4b04faf582
commit e86144499c
9 changed files with 15 additions and 280 deletions

View file

@ -281,7 +281,7 @@ private[akka] final class PromiseActorRef private (val provider: ActorRefProvide
val watchers = clearWatchers()
if (!watchers.isEmpty) {
val termination = Terminated(this)(existenceConfirmed = true, addressTerminated = false)
watchers foreach { w try w.tell(termination, this) catch { case NonFatal(t) /* FIXME LOG THIS */ } }
watchers foreach { _.tell(termination, this) }
}
}
state match {