Skip to content

Commit 24a4c32

Browse files
committed
Remove type on val to match surrounding style
1 parent 9e4ad96 commit 24a4c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repl/src/main/scala/org/apache/spark/repl/SparkIMain.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ import org.apache.spark.util.Utils
102102

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

0 commit comments

Comments
 (0)