aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenny <dennybritz@gmail.com>2012-09-11 16:51:46 -0700
committerDenny <dennybritz@gmail.com>2012-09-11 16:51:46 -0700
commit77873d2c8eda58278e136f01f03e154cba40ee79 (patch)
treec0a5fd173a82dbf454d98b690b09b0f3afa6cf02
parent24b9b373149e5523fd620019f7e8ee2341fbce24 (diff)
downloadspark-77873d2c8eda58278e136f01f03e154cba40ee79.tar.gz
spark-77873d2c8eda58278e136f01f03e154cba40ee79.tar.bz2
spark-77873d2c8eda58278e136f01f03e154cba40ee79.zip
Formatting
-rw-r--r--core/src/main/scala/spark/executor/Executor.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/main/scala/spark/executor/Executor.scala b/core/src/main/scala/spark/executor/Executor.scala
index 371db08da3..8f975c52d4 100644
--- a/core/src/main/scala/spark/executor/Executor.scala
+++ b/core/src/main/scala/spark/executor/Executor.scala
@@ -146,7 +146,8 @@ class Executor extends Logging {
}
// The addURL method in URLClassLoader is protected. We subclass it to make it accessible.
- class ExecutorURLClassLoader(urls : Array[URL], parent : ClassLoader) extends URLClassLoader(urls, parent) {
+ class ExecutorURLClassLoader(urls : Array[URL], parent : ClassLoader)
+ extends URLClassLoader(urls, parent) {
override def addURL(url: URL) {
super.addURL(url)
}