summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2010-06-16 18:46:50 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2010-06-16 18:46:50 +0000
commit5f25a7cf9a0c46e46577b7d42e92c20b210b220c (patch)
treead890bc214f585381c83ab30b6470ed0d14a0f3e /src
parentb9034f4cd52ad6cc8c77da09f3170593672dea03 (diff)
downloadscala-5f25a7cf9a0c46e46577b7d42e92c20b210b220c.tar.gz
scala-5f25a7cf9a0c46e46577b7d42e92c20b210b220c.tar.bz2
scala-5f25a7cf9a0c46e46577b7d42e92c20b210b220c.zip
second part of r22260
Diffstat (limited to 'src')
-rw-r--r--src/parallel-collections/scala/collection/parallel/ParallelSeqViewLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parallel-collections/scala/collection/parallel/ParallelSeqViewLike.scala b/src/parallel-collections/scala/collection/parallel/ParallelSeqViewLike.scala
index 40f5231fbe..2e9ebb1df3 100644
--- a/src/parallel-collections/scala/collection/parallel/ParallelSeqViewLike.scala
+++ b/src/parallel-collections/scala/collection/parallel/ParallelSeqViewLike.scala
@@ -135,7 +135,7 @@ extends SeqView[T, Coll]
override def span(p: T => Boolean): (This, This) = (takeWhile(p), dropWhile(p))
override def scanLeft[S, That](z: S)(op: (S, T) => S)(implicit bf: CanBuildFrom[This, S, That]): That = newForced(thisSeq.scanLeft(z)(op)).asInstanceOf[That]
override def scanRight[S, That](z: S)(op: (T, S) => S)(implicit bf: CanBuildFrom[This, S, That]): That = newForced(thisSeq.scanRight(z)(op)).asInstanceOf[That]
- override def groupBy[K](f: T => K): collection.Map[K, This] = thisSeq.groupBy(f).mapValues(xs => newForced(xs).asInstanceOf[This])
+ override def groupBy[K](f: T => K): collection.immutable.Map[K, This] = thisSeq.groupBy(f).mapValues(xs => newForced(xs).asInstanceOf[This])
override def +:[U >: T, That](elem: U)(implicit bf: CanBuildFrom[This, U, That]): That = newPrepended(elem).asInstanceOf[That]
override def reverse: This = newReversed.asInstanceOf[This]
override def patch[U >: T, That](from: Int, patch: Seq[U], replaced: Int)(implicit bf: CanBuildFrom[This, U, That]): That = newPatched(from, patch, replaced).asInstanceOf[That]