summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sources/scala/tools/scalac/ast/printer/TextTreePrinter.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/sources/scala/tools/scalac/ast/printer/TextTreePrinter.scala b/sources/scala/tools/scalac/ast/printer/TextTreePrinter.scala
index 24d8e4f8f6..063b7551dc 100644
--- a/sources/scala/tools/scalac/ast/printer/TextTreePrinter.scala
+++ b/sources/scala/tools/scalac/ast/printer/TextTreePrinter.scala
@@ -657,11 +657,6 @@ class TextTreePrinter(_out: PrintWriter, autoFlush: boolean) with TreePrinter {
undent();
print(TXT_BLOCK_END);
}
-
- if (templ.body.length > 0) {
- print(Space);
- printArray(templ.body, TXT_BLOCK_BEGIN, TXT_BLOCK_END, TXT_BLOCK_SEP);
- }
}
protected def printParams(tparams: Array[Tree$AbsTypeDef]): unit =