summaryrefslogtreecommitdiff
path: root/sources/scalac/util
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-10-06 06:25:39 +0000
committerpaltherr <paltherr@epfl.ch>2003-10-06 06:25:39 +0000
commit5718f84fddb1310cc77cce49b7ccfbf844047248 (patch)
tree5895055545d0783abb29f2fdfa3cc9c5a21f6042 /sources/scalac/util
parent8de05b9366d483068c331cc616b3371c9860b28d (diff)
downloadscala-5718f84fddb1310cc77cce49b7ccfbf844047248.tar.gz
scala-5718f84fddb1310cc77cce49b7ccfbf844047248.tar.bz2
scala-5718f84fddb1310cc77cce49b7ccfbf844047248.zip
- Added special case for Root
Diffstat (limited to 'sources/scalac/util')
-rw-r--r--sources/scalac/util/Debug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/util/Debug.java b/sources/scalac/util/Debug.java
index c787c34ac8..6acff253b7 100644
--- a/sources/scalac/util/Debug.java
+++ b/sources/scalac/util/Debug.java
@@ -506,7 +506,7 @@ public class DebugSymbol extends DebugAbstractHandler {
public void append1(StringBuffer buffer, Symbol that) {
if (that != Symbol.NONE && that != Symbol.ERROR) {
- if (!that.owner().isRoot()) {
+ if (!that.owner().isRoot() && !that.isRoot()) {
Debug.append(buffer, that.owner());
buffer.append(".");
}