From 71f766faa80d4563bfc0ba51d7489c5f42aa97ba Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Fri, 23 Apr 2010 21:28:45 +0200 Subject: [PATCH] Minor cleanup --- akka-core/src/main/scala/remote/RemoteClient.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-core/src/main/scala/remote/RemoteClient.scala b/akka-core/src/main/scala/remote/RemoteClient.scala index 4676acc904..2557c33d02 100644 --- a/akka-core/src/main/scala/remote/RemoteClient.scala +++ b/akka-core/src/main/scala/remote/RemoteClient.scala @@ -306,7 +306,7 @@ class RemoteClientHandler(val name: String, if (result.isInstanceOf[RemoteReply]) { val reply = result.asInstanceOf[RemoteReply] log.debug("Remote client received RemoteReply[\n%s]", reply.toString) - val future : CompletableFuture[Any] = futures.get(reply.getId).asInstanceOf[CompletableFuture[Any]] + val future = futures.get(reply.getId).asInstanceOf[CompletableFuture[Any]] if (reply.getIsSuccessful) { val message = RemoteProtocolBuilder.getMessage(reply) future.completeWithResult(message)