Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit cd45cc0

Browse files
authored
Merge pull request #476 from scala/wip/untagged-arrayseq-factory
Use WrappedArray’s iterableFactory for ArraySeq
2 parents e8bfbc4 + 2c9c591 commit cd45cc0

File tree

1 file changed

+3
-3
lines changed
  • collections/src/main/scala/strawman/collection/mutable

1 file changed

+3
-3
lines changed

collections/src/main/scala/strawman/collection/mutable/package.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package strawman.collection
33
import scala.deprecated
44

55
package object mutable {
6-
@deprecated("Use WrappedArray instead of ArraySeq", "2.13.0")
6+
@deprecated("Use WrappedArray instead of ArraySeq; it can represent both, boxed and unboxed arrays", "2.13.0")
77
type ArraySeq[X] = WrappedArray[X]
8-
@deprecated("Use WrappedArray instead of ArraySeq", "2.13.0")
9-
val ArraySeq = WrappedArray
8+
@deprecated("Use WrappedArray instead of ArraySeq; it can represent both, boxed and unboxed arrays", "2.13.0")
9+
val ArraySeq = WrappedArray.untagged
1010
@deprecated("Use Iterable instead of Traversable", "2.13.0")
1111
type Traversable[X] = Iterable[X]
1212
@deprecated("Use Iterable instead of Traversable", "2.13.0")

0 commit comments

Comments
 (0)