summaryrefslogtreecommitdiff
path: root/sources/scalac/util
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/util')
-rw-r--r--sources/scalac/util/Debug.java4
1 files changed, 2 insertions, 2 deletions
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);