summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-04-29 15:59:28 +0000
committerburaq <buraq@epfl.ch>2004-04-29 15:59:28 +0000
commitf988ff0675c7dca4ecb82e36f8edfc3c9f71efe2 (patch)
tree42b926edccc949729711979b5930c054fa6deceb /sources
parent62ba1d3b91c448ed62f6c2accf9a8b4011ed8d29 (diff)
downloadscala-f988ff0675c7dca4ecb82e36f8edfc3c9f71efe2.tar.gz
scala-f988ff0675c7dca4ecb82e36f8edfc3c9f71efe2.tar.bz2
scala-f988ff0675c7dca4ecb82e36f8edfc3c9f71efe2.zip
removed toSeq
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/Iterator.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/Iterator.scala b/sources/scala/Iterator.scala
index 483c149c9b..18039e0807 100644
--- a/sources/scala/Iterator.scala
+++ b/sources/scala/Iterator.scala
@@ -176,7 +176,6 @@ trait Iterator[+a] with Iterable[a] {
}
/** converts a prefix of this iterator to a sequence
- */
def toSeq( len:int ):Seq[a] = new Seq[a] {
def length: Int = len;
def elements = Iterator.this;
@@ -188,5 +187,6 @@ trait Iterator[+a] with Iterable[a] {
}
def toSeq:Seq[a] = toList;
+ */
}