summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/scalac/Global.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/sources/scalac/Global.java b/sources/scalac/Global.java
index a74b088a0a..65f10a3885 100644
--- a/sources/scalac/Global.java
+++ b/sources/scalac/Global.java
@@ -489,6 +489,8 @@ public class Global {
}
private StringBuffer append(StringBuffer buffer, Type type) {
+ return buffer.append(type);
+ /*
switch (type) {
case ErrorType:
return buffer.append("<error>");
@@ -531,6 +533,7 @@ public class Global {
default:
throw Debug.abort("illegal case", type);
}
+ */
}
private StringBuffer append(StringBuffer buffer, Type[] types,