summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Typers.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2010-12-17 15:00:49 +0000
committerMartin Odersky <odersky@gmail.com>2010-12-17 15:00:49 +0000
commit06487c5afb7fa6d90497d3f0086cf5714dd3c1d9 (patch)
treedc7c4a9940730d44318c73020b4e8c33bc40f311 /src/compiler/scala/tools/nsc/typechecker/Typers.scala
parent4a442e98e3e8a5c851d30cf782d29be0afc156fa (diff)
downloadscala-06487c5afb7fa6d90497d3f0086cf5714dd3c1d9.tar.gz
scala-06487c5afb7fa6d90497d3f0086cf5714dd3c1d9.tar.bz2
scala-06487c5afb7fa6d90497d3f0086cf5714dd3c1d9.zip
Attempt to fix NoSymbol does not have owner pro...
Attempt to fix NoSymbol does not have owner problem in Eclipse.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Typers.scala')
-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 c20732b2bc..9f022a1d92 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Typers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Typers.scala
@@ -2093,7 +2093,7 @@ trait Typers { self: Analyzer =>
def typedImport(imp : Import) : Import = (transformed remove imp) match {
case Some(imp1: Import) => imp1
- case None => println("unhandled impoprt: "+imp+" in "+unit); imp
+ case None => println("unhandled import: "+imp+" in "+unit); imp
}
def typedStats(stats: List[Tree], exprOwner: Symbol): List[Tree] = {