Skip to content

Commit 1134013

Browse files
authored
Merge pull request #308 from scala/fix-distributivity
2 parents faac62a + 4071894 commit 1134013

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/scala/scala/collection/parallel/ParSeqLike.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
package scala
1414
package collection.parallel
1515

16-
import scala.collection.{AnyConstr, BufferedIterator, Iterator, SeqOps}
16+
import scala.collection.{BufferedIterator, Iterator, SeqOps}
1717
import scala.collection.generic.DefaultSignalling
1818
import scala.collection.generic.AtomicIndexFlag
1919
import scala.collection.generic.VolatileAbort
@@ -46,7 +46,7 @@ import scala.annotation.unchecked.uncheckedVariance
4646
* This trait defines a new, more general `split` operation and reimplements the `split`
4747
* operation of `ParallelIterable` trait using the new `split` operation.
4848
*/
49-
trait ParSeqLike[+T, +CC[X] <: ParSeq[X], +Repr <: ParSeq[T], +Sequential <: scala.collection.Seq[T] with SeqOps[T, AnyConstr, Sequential]]
49+
trait ParSeqLike[+T, +CC[X] <: ParSeq[X], +Repr <: ParSeq[T], +Sequential <: scala.collection.Seq[T] with SeqOps[T, collection.Seq, Sequential]]
5050
extends ParIterableLike[T, CC, Repr, Sequential]
5151
with Equals { self =>
5252

0 commit comments

Comments
 (0)