From 34501279e2ba67fb9726c8abe74ef31019434232 Mon Sep 17 00:00:00 2001 From: mihaylov Date: Mon, 1 Dec 2003 17:03:45 +0000 Subject: - explicitly qualified System with java.lang. --- test/files/run/Course-2002-06.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/files/run/Course-2002-06.scala') diff --git a/test/files/run/Course-2002-06.scala b/test/files/run/Course-2002-06.scala index d044d778d6..a1218429c2 100644 --- a/test/files/run/Course-2002-06.scala +++ b/test/files/run/Course-2002-06.scala @@ -122,7 +122,8 @@ class PostScript (filename: String, _width: Double, _height: Double) /** File where to print.*/ import java.io._; val out : PrintStream = new PrintStream( - if (filename == "-") System.out else new FileOutputStream(filename)); + if (filename == "-") java.lang.System.out + else new FileOutputStream(filename)); def plotLine(x1: Double, y1: Double, x2: Double, y2: Double): Unit = { out.println(x1 + " " + y1 + " m " + x2 + " " + y2 + " l"); -- cgit v1.2.3