From 4e1fe7635e3d952472a232a1b983cd414f54579e Mon Sep 17 00:00:00 2001 From: ticktock Date: Tue, 24 May 2011 21:04:39 -0700 Subject: [PATCH] fixing compile looks like some spurious chars were added accidentally --- .../src/main/scala/akka/remote/netty/NettyRemoteSupport.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala b/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala index 5aff8408eb..fa360c43e5 100644 --- a/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala +++ b/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala @@ -832,7 +832,7 @@ class RemoteServerHandler( // stop all session actors for ( map ← Option(sessionActors.remove(event.getChannel)); - actor ← collectionAsScalaIterable(map.values)gddd + actor ← collectionAsScalaIterable(map.values) ) { try { actor ! PoisonPill } catch { case e: Exception ⇒ } }