summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-11-09 18:34:49 +0000
committerMartin Odersky <odersky@gmail.com>2009-11-09 18:34:49 +0000
commit7da30bf2d5195d1e7a156680b50167707f7a3d0a (patch)
tree083cd78a70a13ac5fab4609a2a2875be48501df0 /src/compiler
parent2aeae987765bd5a63954b89ac8428db97b0a369f (diff)
downloadscala-7da30bf2d5195d1e7a156680b50167707f7a3d0a.tar.gz
scala-7da30bf2d5195d1e7a156680b50167707f7a3d0a.tar.bz2
scala-7da30bf2d5195d1e7a156680b50167707f7a3d0a.zip
added `locally' to Predef.
added overloaded hashes to Predef. some small changes.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/RefChecks.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
index 0b285da72d..aaefab1f74 100644
--- a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
@@ -935,7 +935,7 @@ abstract class RefChecks extends InfoTransform {
unit.deprecationWarning(
tree.pos,
symbol.toString + " overrides concrete, non-deprecated symbol(s):" +
- concrOvers.map(_.fullNameString).mkString(" ", ", ", ""))
+ concrOvers.map(_.name.decode).mkString(" ", ", ", ""))
}
}