summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-05-12 15:02:12 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-05-12 15:02:12 +0200
commit716b2a72f665a876eae0ef56c1a89fc943b57274 (patch)
tree3eaf88e181d28bcde66ff7ed793e08fecfe1fc1b /src/compiler
parent3511e5960d510eafcb67c388ec0b5b60aafdd8f3 (diff)
downloadscala-716b2a72f665a876eae0ef56c1a89fc943b57274.tar.gz
scala-716b2a72f665a876eae0ef56c1a89fc943b57274.tar.bz2
scala-716b2a72f665a876eae0ef56c1a89fc943b57274.zip
NSDNHAO need not tell us in which version it resides.
This is done for all crashers now. Furthermore, that error report makes it pretty clear that it's a compiler bug, not user error, so "this is a bug" seem like needless words. Resisted the nostalgic temptation to remove the "an".
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/reflect/internal/Symbols.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/reflect/internal/Symbols.scala b/src/compiler/scala/reflect/internal/Symbols.scala
index 724e5bf628..240dedc658 100644
--- a/src/compiler/scala/reflect/internal/Symbols.scala
+++ b/src/compiler/scala/reflect/internal/Symbols.scala
@@ -3054,7 +3054,7 @@ trait Symbols extends api.Symbols { self: SymbolTable =>
override def originalEnclosingMethod = this
override def owner: Symbol =
- abort("no-symbol does not have an owner (this is a bug: scala " + scala.util.Properties.versionString + ")")
+ abort("no-symbol does not have an owner")
override def typeConstructor: Type =
abort("no-symbol does not have a type constructor (this may indicate scalac cannot find fundamental classes)")
}