From cc5e79c9ec9cea8d0f22020b528877d8f6e00153 Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Wed, 27 May 2009 19:35:02 +0000 Subject: In "Iterable" and in all its subclasses, "itera... In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes). --- src/partest/scala/tools/partest/nest/CompileManager.scala | 2 +- src/partest/scala/tools/partest/nest/ConsoleRunner.scala | 4 ++-- src/partest/scala/tools/partest/nest/ReflectiveRunner.scala | 2 +- src/partest/scala/tools/partest/nest/Worker.scala | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/partest') diff --git a/src/partest/scala/tools/partest/nest/CompileManager.scala b/src/partest/scala/tools/partest/nest/CompileManager.scala index f7612823fc..0e48d58b8b 100644 --- a/src/partest/scala/tools/partest/nest/CompileManager.scala +++ b/src/partest/scala/tools/partest/nest/CompileManager.scala @@ -93,7 +93,7 @@ class DirectCompiler(val fileManager: FileManager) extends SimpleCompiler { } else "" val allOpts = fileManager.SCALAC_OPTS+" "+argString NestUI.verbose("scalac options: "+allOpts) - val args = List.fromArray(allOpts split "\\s") + val args = (allOpts split "\\s").toList val command = new CompilerCommand(args, testSettings, x => {}, false) val global = newGlobal(command.settings, logWriter) val testRep: ExtConsoleReporter = global.reporter.asInstanceOf[ExtConsoleReporter] diff --git a/src/partest/scala/tools/partest/nest/ConsoleRunner.scala b/src/partest/scala/tools/partest/nest/ConsoleRunner.scala index 1a2cfd6580..c353ea6f06 100644 --- a/src/partest/scala/tools/partest/nest/ConsoleRunner.scala +++ b/src/partest/scala/tools/partest/nest/ConsoleRunner.scala @@ -55,7 +55,7 @@ class ConsoleRunner extends DirectRunner with RunnerUtils { def main(argstr: String) { // tokenize args. filter: "".split("\\s") yields Array("") - var args = List.fromArray(argstr split "\\s").remove(_ == "") + var args = (argstr split "\\s").toList.filterNot(_ == "") if (args.length == 0) NestUI.usage() @@ -75,7 +75,7 @@ class ConsoleRunner extends DirectRunner with RunnerUtils { else if (!classPath.isEmpty) new ConsoleFileManager(classPath.get, true) else if (args contains "--pack") { - args = args.remove(_ == "--pack") // will create a result file '--pack' otherwise + args = args.filterNot(_ == "--pack") // will create a result file '--pack' otherwise new ConsoleFileManager("build/pack") } else // auto detection, see ConsoleFileManager.findLatest new ConsoleFileManager diff --git a/src/partest/scala/tools/partest/nest/ReflectiveRunner.scala b/src/partest/scala/tools/partest/nest/ReflectiveRunner.scala index 76e58efb74..2c5493f9e1 100644 --- a/src/partest/scala/tools/partest/nest/ReflectiveRunner.scala +++ b/src/partest/scala/tools/partest/nest/ReflectiveRunner.scala @@ -26,7 +26,7 @@ class ReflectiveRunner extends RunnerUtils { val sepRunnerClassName = "scala.tools.partest.nest.ConsoleRunner" def main(args: String) { - val argList = List.fromArray(args.split("\\s")) + val argList = (args.split("\\s")).toList // find out which build to test val buildPath = searchPath("--buildpath", argList) diff --git a/src/partest/scala/tools/partest/nest/Worker.scala b/src/partest/scala/tools/partest/nest/Worker.scala index 22fb6d606e..a01b9b0974 100644 --- a/src/partest/scala/tools/partest/nest/Worker.scala +++ b/src/partest/scala/tools/partest/nest/Worker.scala @@ -72,7 +72,7 @@ class Worker(val fileManager: FileManager) extends Actor { file.getAbsolutePath.substring(filesPathLen) } } - NestUI.normal("[...]"+name+List.toString(List.make(totalWidth-name.length, ' ')), printer) + NestUI.normal("[...]"+name+List.toString(List.fill(totalWidth-name.length)(' ')), printer) } def printInfoEnd(success: Boolean, printer: PrintWriter) { -- cgit v1.2.3