From 6290560c080afcc6559100216fea4786830cfabf Mon Sep 17 00:00:00 2001 From: paltherr Date: Mon, 3 Mar 2003 14:49:03 +0000 Subject: - Improved the priniting of symbols --- sources/scalac/util/Debug.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sources/scalac') diff --git a/sources/scalac/util/Debug.java b/sources/scalac/util/Debug.java index 1b6da14bda..44b6e8298a 100644 --- a/sources/scalac/util/Debug.java +++ b/sources/scalac/util/Debug.java @@ -440,8 +440,8 @@ public class DebugSymbol extends DebugAbstractHandler { if (that != Symbol.NONE && that != Symbol.ERROR) { buffer.append(that.kindString()).append(' '); if (that.owner() != Global.instance.definitions.ROOT_CLASS) { - buffer.append(that.owner().fullName()); - buffer.append("::"); + Debug.append(buffer, that.owner()); + buffer.append("."); } } buffer.append(that.name); -- cgit v1.2.3