aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-12-21 15:35:32 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-21 15:35:32 +0100
commit40af028fd2f54cc3399aa2d03f1e7c8c4dd8f006 (patch)
tree24133fd55c2bcad4660e18ab7bf47db46527c102
parentec35b840e71c34ea2d7c7a59a9c69ce0f44c4740 (diff)
downloaddotty-40af028fd2f54cc3399aa2d03f1e7c8c4dd8f006.tar.gz
dotty-40af028fd2f54cc3399aa2d03f1e7c8c4dd8f006.tar.bz2
dotty-40af028fd2f54cc3399aa2d03f1e7c8c4dd8f006.zip
Drop redundant println
-rw-r--r--compiler/src/dotty/tools/dotc/typer/FrontEnd.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/typer/FrontEnd.scala b/compiler/src/dotty/tools/dotc/typer/FrontEnd.scala
index 90ffbcdae..6eff63e2b 100644
--- a/compiler/src/dotty/tools/dotc/typer/FrontEnd.scala
+++ b/compiler/src/dotty/tools/dotc/typer/FrontEnd.scala
@@ -84,7 +84,6 @@ class FrontEnd extends Phase {
}
unitContexts foreach (parse(_))
record("parsedTrees", ast.Trees.ntrees)
- unitContexts.foreach(ctx => println(ctx.compilationUnit))
remaining = unitContexts
while (remaining.nonEmpty) {
enterSyms(remaining.head)