summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/Iterator.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/Iterator.scala')
-rw-r--r--src/library/scala/collection/Iterator.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/library/scala/collection/Iterator.scala b/src/library/scala/collection/Iterator.scala
index ea186c7a7e..20573ca3ab 100644
--- a/src/library/scala/collection/Iterator.scala
+++ b/src/library/scala/collection/Iterator.scala
@@ -48,14 +48,6 @@ object Iterator {
*/
def apply[A](elems: A*): Iterator[A] = elems.iterator
- /** Concatenates the given argument iterators into a single iterator.
- *
- * @param its the argument iterators that are to be concatenated
- * @return the concatenation of all the argument iterators
- */
- @deprecated("use <code>++</code>")
- def concat[A](xss: Iterator[A]*): Iterator[A] = xss.iterator.flatten
-
/** An iterator that returns the results of some element computation a number of times.
* @param len The number of elements returned
* @param elem The element computation determinining each result