Skip to content

Commit e3ce19b

Browse files
committed
Remove references to parallel collections in Vector.scala
This makes it build with 2.13.x. I'll re-run the benchmarks that are already published using the previous version.
1 parent d0fd3c8 commit e3ce19b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

corpus/vector/fb04376/Vector.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import scala.annotation.unchecked.uncheckedVariance
1414
import scala.compat.Platform
1515
import scala.collection.generic._
1616
import scala.collection.mutable.Builder
17-
import scala.collection.parallel.immutable.ParVector
1817

1918
/** Companion object to the Vector class
2019
*/
@@ -66,7 +65,6 @@ extends AbstractSeq[A]
6665
with IndexedSeqLike[A, Vector[A]]
6766
with VectorPointer[A @uncheckedVariance]
6867
with Serializable
69-
with CustomParallelizable[A, ParVector[A]]
7068
{ self =>
7169

7270
override def companion: GenericCompanion[Vector] = Vector
@@ -80,8 +78,6 @@ override def companion: GenericCompanion[Vector] = Vector
8078

8179
def length = endIndex - startIndex
8280

83-
override def par = new ParVector(this)
84-
8581
override def toVector: Vector[A] = this
8682

8783
override def lengthCompare(len: Int): Int = length - len

0 commit comments

Comments
 (0)