From f9b9bfe110afbc30c9af8cf2d3e2fa251f28c4e4 Mon Sep 17 00:00:00 2001 From: Aaron Davidson Date: Mon, 12 May 2014 09:56:18 -0700 Subject: [PATCH] Remove other redundant 'throw e' --- .../scala/org/apache/spark/api/python/PythonWorkerFactory.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/scala/org/apache/spark/api/python/PythonWorkerFactory.scala b/core/src/main/scala/org/apache/spark/api/python/PythonWorkerFactory.scala index dbc48f6c8996f..759cbe2c46c52 100644 --- a/core/src/main/scala/org/apache/spark/api/python/PythonWorkerFactory.scala +++ b/core/src/main/scala/org/apache/spark/api/python/PythonWorkerFactory.scala @@ -71,7 +71,6 @@ private[spark] class PythonWorkerFactory(pythonExec: String, envVars: Map[String stopDaemon() startDaemon() new Socket(daemonHost, daemonPort) - case e: Exception => throw e } } }