summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/util/ClassPath.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/util/ClassPath.scala')
-rw-r--r--src/compiler/scala/tools/nsc/util/ClassPath.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/scala/tools/nsc/util/ClassPath.scala b/src/compiler/scala/tools/nsc/util/ClassPath.scala
index 0256db87a7..a2ec9d945b 100644
--- a/src/compiler/scala/tools/nsc/util/ClassPath.scala
+++ b/src/compiler/scala/tools/nsc/util/ClassPath.scala
@@ -81,7 +81,7 @@ class ClassPath(onlyPresentation: Boolean) {
else new Source(source0, head.source.compile)
}
try {
- //System.err.println("this=" + this + "\nclazz=" + clazz + "\nsource0=" + source0 + "\n")
+ //Console.err.println("this=" + this + "\nclazz=" + clazz + "\nsource0=" + source0 + "\n")
new Context(entry :: ret.entries)
} catch {
case e: Error =>
@@ -93,7 +93,7 @@ class ClassPath(onlyPresentation: Boolean) {
val ret = find0(entries)
if (ret.entries.isEmpty) {
- //System.err.println("BAD_FILE: " + name + " in " + this)
+ //Console.err.println("BAD_FILE: " + name + " in " + this)
null
} else ret
} else null
@@ -150,7 +150,7 @@ class ClassPath(onlyPresentation: Boolean) {
val sourcePath0 = sourcePath
if (sourcePath0 != null) {
if (!sourcePath0.isDirectory) {
- System.err.println(""+sourcePath0 + " cannot be a directory")
+ Console.err.println(""+sourcePath0 + " cannot be a directory")
assert(false)
}
}
@@ -184,7 +184,7 @@ class ClassPath(onlyPresentation: Boolean) {
addArchivesInExtDirPath(extdirs)
val clazzes = AbstractFile.getDirectory(output)
if (clazzes == null) {
- System.err.println("Output location \"" + output + "\" not found")
+ Console.err.println("Output location \"" + output + "\" not found")
exit(1)
}
val strtok = new StringTokenizer(source, File.pathSeparator)