aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala
diff options
context:
space:
mode:
authorAndrew Or <andrewor14@gmail.com>2014-07-11 00:21:16 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-07-11 00:21:16 -0700
commitf4f46dec5ae1da48738b9b650d3de155b59c4674 (patch)
tree0fb973c6f683bf3b6f06a802b240806c1c5fa1bc /core/src/main/scala
parent282cca0e49120291759ded75709013e907db598c (diff)
downloadspark-f4f46dec5ae1da48738b9b650d3de155b59c4674.tar.gz
spark-f4f46dec5ae1da48738b9b650d3de155b59c4674.tar.bz2
spark-f4f46dec5ae1da48738b9b650d3de155b59c4674.zip
[Minor] Remove unused val in Master
Author: Andrew Or <andrewor14@gmail.com> Closes #1365 from andrewor14/master-fs and squashes the following commits: 497f100 [Andrew Or] Sneak in a space and hope no one will notice 05ba6da [Andrew Or] Remove unused val
Diffstat (limited to 'core/src/main/scala')
-rw-r--r--core/src/main/scala/org/apache/spark/deploy/master/Master.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/main/scala/org/apache/spark/deploy/master/Master.scala b/core/src/main/scala/org/apache/spark/deploy/master/Master.scala
index a304102a49..d9f8105992 100644
--- a/core/src/main/scala/org/apache/spark/deploy/master/Master.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/master/Master.scala
@@ -72,9 +72,7 @@ private[spark] class Master(
val waitingApps = new ArrayBuffer[ApplicationInfo]
val completedApps = new ArrayBuffer[ApplicationInfo]
var nextAppNumber = 0
-
val appIdToUI = new HashMap[String, SparkUI]
- val fileSystemsUsed = new HashSet[FileSystem]
val drivers = new HashSet[DriverInfo]
val completedDrivers = new ArrayBuffer[DriverInfo]
@@ -159,7 +157,6 @@ private[spark] class Master(
recoveryCompletionTask.cancel()
}
webUi.stop()
- fileSystemsUsed.foreach(_.close())
masterMetricsSystem.stop()
applicationMetricsSystem.stop()
persistenceEngine.close()