From 4dc4cdde26538a43a16e90deaffc368b7d7de403 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Tue, 22 May 2012 13:49:04 +0200 Subject: [PATCH] Arrow-formatting ;-) --- akka-actor/src/main/scala/akka/actor/ActorCell.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-actor/src/main/scala/akka/actor/ActorCell.scala b/akka-actor/src/main/scala/akka/actor/ActorCell.scala index 3b2c743a6b..0955595640 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorCell.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorCell.scala @@ -557,8 +557,8 @@ private[akka] class ActorCell( } } catch { case NonFatal(e) ⇒ throw new ActorInitializationException(self, "exception during creation", e match { - case i: InstantiationException => i.getCause - case other => other + case i: InstantiationException ⇒ i.getCause + case other ⇒ other }) } }