summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-01-28 22:10:39 +0000
committermihaylov <mihaylov@epfl.ch>2007-01-28 22:10:39 +0000
commitd684e5c0717e8cd3389fc0bc810e26ac8f765d0e (patch)
treeb6485211a912825f4f2114aa4166820f780071b2 /src/library
parent3178d341be5959466945629ecb8c560f3e3030e2 (diff)
downloadscala-d684e5c0717e8cd3389fc0bc810e26ac8f765d0e.tar.gz
scala-d684e5c0717e8cd3389fc0bc810e26ac8f765d0e.tar.bz2
scala-d684e5c0717e8cd3389fc0bc810e26ac8f765d0e.zip
Fixed contribution #302 concerning scala.SeqProxy
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/SeqProxy.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/library/scala/SeqProxy.scala b/src/library/scala/SeqProxy.scala
index d346060e50..f0ee5da4d6 100644
--- a/src/library/scala/SeqProxy.scala
+++ b/src/library/scala/SeqProxy.scala
@@ -23,6 +23,7 @@ trait SeqProxy[+A] extends Seq[A] with IterableProxy[A] {
def self: Seq[A]
+ override def apply(i: Int): A = self(i)
override def length: Int = self.length
override def isEmpty: Boolean = self.isEmpty
override def concat [B >: A](that: Iterable[B]): Seq[B] = self concat that