summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-09-25 01:51:28 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-09-25 01:51:28 +0000
commit82b9e235bbc2bc6c23e89729e3bc2f8d52be1c10 (patch)
treec7a67ed7f4ffa15a6d4aca974eff8634d076e589
parentec4b63515012e8982873deb63a87ef6d0cc7efb0 (diff)
downloadscala-82b9e235bbc2bc6c23e89729e3bc2f8d52be1c10.tar.gz
scala-82b9e235bbc2bc6c23e89729e3bc2f8d52be1c10.tar.bz2
scala-82b9e235bbc2bc6c23e89729e3bc2f8d52be1c10.zip
Removes abstract types in ParSeq and ParIterable.
-rw-r--r--src/library/scala/collection/parallel/ParIterableLike.scala2
-rw-r--r--src/library/scala/collection/parallel/ParSeqLike.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/parallel/ParIterableLike.scala b/src/library/scala/collection/parallel/ParIterableLike.scala
index 05978d2f87..907a3d84da 100644
--- a/src/library/scala/collection/parallel/ParIterableLike.scala
+++ b/src/library/scala/collection/parallel/ParIterableLike.scala
@@ -164,7 +164,7 @@ self =>
/** Convenience for signal context passing iterator.
*/
- type SCPI <: SignalContextPassingIterator[ParIterator]
+ //type SCPI <: SignalContextPassingIterator[ParIterator]
/** Creates a new parallel iterator used to traverse the elements of this parallel collection.
* This iterator is more specific than the iterator of the returned by `iterator`, and augmented
diff --git a/src/library/scala/collection/parallel/ParSeqLike.scala b/src/library/scala/collection/parallel/ParSeqLike.scala
index cc68191f9d..f26ef0348c 100644
--- a/src/library/scala/collection/parallel/ParSeqLike.scala
+++ b/src/library/scala/collection/parallel/ParSeqLike.scala
@@ -74,7 +74,7 @@ self =>
/** A convenient shorthand for the signal context passing stackable modification.
*/
- type SCPI <: SignalContextPassingIterator[ParIterator]
+ //type SCPI <: SignalContextPassingIterator[ParIterator]
/** A more refined version of the iterator found in the `ParallelIterable` trait,
* this iterator can be split into arbitrary subsets of iterators.