summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2011-01-27 10:03:45 +0000
committerIulian Dragos <jaguarul@gmail.com>2011-01-27 10:03:45 +0000
commit942d844aebc63dd417c77911acf565bf1e2c027d (patch)
treecda42a6023eb023437f5f2f01a21b3b9a6ca7128 /src
parent64da770afeb9b383e94228ad7d9f31b8f6e45dee (diff)
downloadscala-942d844aebc63dd417c77911acf565bf1e2c027d.tar.gz
scala-942d844aebc63dd417c77911acf565bf1e2c027d.tar.bz2
scala-942d844aebc63dd417c77911acf565bf1e2c027d.zip
Re-enabled another position check in FindTrees.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Typers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Typers.scala b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
index ecb99b7f5b..d4fe1edf27 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -2013,7 +2013,7 @@ trait Typers extends Modes {
def typedImport(imp : Import) : Import = (transformed remove imp) match {
case Some(imp1: Import) => imp1
- case None => println("unhandled import: "+imp+" in "+unit); imp
+ case None => log("unhandled import: "+imp+" in "+unit); imp
}
def typedStats(stats: List[Tree], exprOwner: Symbol): List[Tree] = {