Minor formatting

This commit is contained in:
Viktor Klang 2012-06-08 14:26:10 +02:00
parent c7af802dc8
commit c1d68ecfbf

View file

@ -339,9 +339,7 @@ class SupervisorSpec extends AkkaSpec with BeforeAndAfterEach with ImplicitSende
OneForOneStrategy(maxNrOfRetries = 3, withinTimeRange = 10 seconds)(classOf[Exception] :: Nil))))
val dyingProps = Props(new Actor {
inits.incrementAndGet
if (inits.get % 2 == 0) throw new IllegalStateException("Don't wanna!")
if (inits.incrementAndGet % 2 == 0) throw new IllegalStateException("Don't wanna!")
def receive = {
case Ping sender ! PongMessage