summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-14 00:32:11 -0700
committerPaul Phillips <paulp@improving.org>2012-05-14 00:32:11 -0700
commitf38db3ad8128ac171a7e4a6d6c9507f30fee89d5 (patch)
tree928228bc6b8743ce5fff2e3ec2d4dfc3bd31f22b
parent32a2068e3cc40ccab32f3c207cff73cfb6cc2ef5 (diff)
downloadscala-f38db3ad8128ac171a7e4a6d6c9507f30fee89d5.tar.gz
scala-f38db3ad8128ac171a7e4a6d6c9507f30fee89d5.tar.bz2
scala-f38db3ad8128ac171a7e4a6d6c9507f30fee89d5.zip
Removed an unnecessary self type.
-rw-r--r--src/compiler/scala/reflect/internal/AnnotationInfos.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compiler/scala/reflect/internal/AnnotationInfos.scala b/src/compiler/scala/reflect/internal/AnnotationInfos.scala
index 085537fc9f..5bdd04e544 100644
--- a/src/compiler/scala/reflect/internal/AnnotationInfos.scala
+++ b/src/compiler/scala/reflect/internal/AnnotationInfos.scala
@@ -18,8 +18,6 @@ trait AnnotationInfos extends api.AnnotationInfos { self: SymbolTable =>
// the Symbol's field directly. For Type, a new AnnotatedType is
// created which wraps the original type.
trait Annotatable[Self] {
- self: Self =>
-
/** The annotations on this type. */
def annotations: List[AnnotationInfo] // Annotations on this type.
def setAnnotations(annots: List[AnnotationInfo]): Self // Replace annotations with argument list.