summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/classfile
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-07-21 14:22:07 +0000
committerpaltherr <paltherr@epfl.ch>2004-07-21 14:22:07 +0000
commit05e63cf5e66ff7f15001e4b0644b0fa2d8354fbc (patch)
tree740bfcf2c36df53a9f5c2136e3ad70676d551e6f /sources/scalac/symtab/classfile
parent57aef02daa43e8373068d8d6612396f5611d72b6 (diff)
downloadscala-05e63cf5e66ff7f15001e4b0644b0fa2d8354fbc.tar.gz
scala-05e63cf5e66ff7f15001e4b0644b0fa2d8354fbc.tar.bz2
scala-05e63cf5e66ff7f15001e4b0644b0fa2d8354fbc.zip
- Removed usage of Debug in error message
Diffstat (limited to 'sources/scalac/symtab/classfile')
-rw-r--r--sources/scalac/symtab/classfile/Signatures.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/symtab/classfile/Signatures.java b/sources/scalac/symtab/classfile/Signatures.java
index 408a3e9384..a003c4d926 100644
--- a/sources/scalac/symtab/classfile/Signatures.java
+++ b/sources/scalac/symtab/classfile/Signatures.java
@@ -109,7 +109,7 @@ public class Signatures {
if (!clasz.isClass()) {
Symbol symbol = owner.newErrorClass(name);
- error("could not find class " + symbol.staticType() + "(found " + Debug.show(clasz) + ")");
+ error("could not find class " + symbol.staticType());
if (clasz.isNone()) owner.members().enterNoHide(symbol);
clasz = symbol;
}