File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/library/scala/collection/parallel Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ extends collection/*.immutable*/.GenIterable[T]
34
34
with collection.parallel.ParIterable [T ]
35
35
with GenericParTemplate [T , ParIterable ]
36
36
with ParIterableLike [T , ParIterable [T ], collection.immutable.Iterable [T ]]
37
+ with Immutable
37
38
{
38
39
override def companion : GenericCompanion [ParIterable ] with GenericParCompanion [ParIterable ] = ParIterable
39
40
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ import scala.collection.GenIterable
29
29
trait ParIterable [T ] extends collection/* .mutable*/ .GenIterable [T ]
30
30
with collection.parallel.ParIterable [T ]
31
31
with GenericParTemplate [T , ParIterable ]
32
- with ParIterableLike [T , ParIterable [T ], Iterable [T ]] {
32
+ with ParIterableLike [T , ParIterable [T ], Iterable [T ]]
33
+ with Mutable {
33
34
override def companion : GenericCompanion [ParIterable ] with GenericParCompanion [ParIterable ] = ParIterable
34
35
// protected[this] override def newBuilder = ParIterable.newBuilder[T]
35
36
You can’t perform that action at this time.
0 commit comments