summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/collection/jcl/Buffer.scala2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/library/scala/collection/jcl/Buffer.scala b/src/library/scala/collection/jcl/Buffer.scala
index d7513cc314..359c5ec5db 100644
--- a/src/library/scala/collection/jcl/Buffer.scala
+++ b/src/library/scala/collection/jcl/Buffer.scala
@@ -18,11 +18,9 @@ trait Buffer[A] extends MutableSeq[A] with Collection[A] with Ranged[Int,A] {
final protected type SortedSelf = Buffer[A];
trait MutableSeqProjection extends super[MutableSeq].Projection;
-
trait Projection extends MutableSeqProjection with super[Collection].Projection {
override def filter(p : A => Boolean) = super[MutableSeqProjection].filter(p);
}
-
override def projection = new Projection {}
override def elements : BufferIterator[Int,A];