Skip to content

Commit

Permalink
Remove type on val to match surrounding style
Browse files Browse the repository at this point in the history
  • Loading branch information
ash211 committed Jul 25, 2014
1 parent 9e4ad96 commit 24a4c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repl/src/main/scala/org/apache/spark/repl/SparkIMain.scala
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ import org.apache.spark.util.Utils

val virtualDirectory = new PlainFile(outputDir) // "directory" for classfiles
/** Jetty server that will serve our classes to worker nodes */
val classServerListenPort: Int = conf.getInt("spark.replClassServer.port", 0)
val classServerListenPort = conf.getInt("spark.replClassServer.port", 0)
val classServer = new HttpServer(outputDir, new SecurityManager(conf), classServerListenPort)
private var currentSettings: Settings = initialSettings
var printResults = true // whether to print result lines
Expand Down

0 comments on commit 24a4c32

Please sign in to comment.