File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import scala.annotation.unchecked.uncheckedVariance
14
14
import scala .compat .Platform
15
15
import scala .collection .generic ._
16
16
import scala .collection .mutable .Builder
17
- import scala .collection .parallel .immutable .ParVector
18
17
19
18
/** Companion object to the Vector class
20
19
*/
@@ -66,7 +65,6 @@ extends AbstractSeq[A]
66
65
with IndexedSeqLike [A , Vector [A ]]
67
66
with VectorPointer [A @ uncheckedVariance]
68
67
with Serializable
69
- with CustomParallelizable [A , ParVector [A ]]
70
68
{ self =>
71
69
72
70
override def companion : GenericCompanion [Vector ] = Vector
@@ -80,8 +78,6 @@ override def companion: GenericCompanion[Vector] = Vector
80
78
81
79
def length = endIndex - startIndex
82
80
83
- override def par = new ParVector (this )
84
-
85
81
override def toVector : Vector [A ] = this
86
82
87
83
override def lengthCompare (len : Int ): Int = length - len
You can’t perform that action at this time.
0 commit comments