Use process instead of main as the latter is deprecated.

This commit is contained in:
Ismael Juma 2011-08-02 10:26:03 +01:00
Родитель 6ff57f5594
Коммит 065043a14f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,7 @@ class ReplSuite extends FunSuite {
val interp = new SparkILoop(in, new PrintWriter(out), master)
spark.repl.Main.interp = interp
val separator = System.getProperty("path.separator")
interp.main(Array("-classpath", paths.mkString(separator)))
interp.process(Array("-classpath", paths.mkString(separator)))
spark.repl.Main.interp = null
if (interp.sparkContext != null)
interp.sparkContext.stop()