From 0f45477be16254971763cbc07feac7460cffd0bd Mon Sep 17 00:00:00 2001
From: Mridul Muralidharan <mridul@gmail.com>
Date: Wed, 1 May 2013 00:10:02 +0530
Subject: [PATCH] Change indentation

---
 .../spark/network/ConnectionManager.scala     | 40 +++++++++----------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/core/src/main/scala/spark/network/ConnectionManager.scala b/core/src/main/scala/spark/network/ConnectionManager.scala
index 9b00fddd40..925d076951 100644
--- a/core/src/main/scala/spark/network/ConnectionManager.scala
+++ b/core/src/main/scala/spark/network/ConnectionManager.scala
@@ -255,30 +255,30 @@ private[spark] class ConnectionManager(port: Int) extends Logging {
         }
 
         val selectedKeysCount =
-        try {
-          selector.select()
-        } catch {
-          case e: CancelledKeyException => {
-            // Some keys within the selectors list are invalid/closed. clear them.
-            val allKeys = selector.keys().iterator()
-
-            while (allKeys.hasNext()) {
-              val key = allKeys.next()
-              try {
-                if (! key.isValid) {
-                  logInfo("Key not valid ? " + key)
-                  throw new CancelledKeyException()
-                }
-              } catch {
-                case e: CancelledKeyException => {
-                  logInfo("key already cancelled ? " + key, e)
-                  triggerForceCloseByException(key, e)
+          try {
+            selector.select()
+          } catch {
+            case e: CancelledKeyException => {
+              // Some keys within the selectors list are invalid/closed. clear them.
+              val allKeys = selector.keys().iterator()
+
+              while (allKeys.hasNext()) {
+                val key = allKeys.next()
+                try {
+                  if (! key.isValid) {
+                    logInfo("Key not valid ? " + key)
+                    throw new CancelledKeyException()
+                  }
+                } catch {
+                  case e: CancelledKeyException => {
+                    logInfo("key already cancelled ? " + key, e)
+                    triggerForceCloseByException(key, e)
+                  }
                 }
               }
             }
+            0
           }
-          0
-        }
 
         if (selectedKeysCount == 0) {
           logDebug("Selector selected " + selectedKeysCount + " of " + selector.keys.size + " keys")
-- 
GitLab