Skip to content

Commit 3647df7

Browse files
committed
1 parent 2d3c4e9 commit 3647df7

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version in ThisBuild := "0.1.3-SNAPSHOT"
55
resolvers in ThisBuild += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"
66

77
scalaVersionsByJvm in ThisBuild := {
8-
val v213 = "2.13.0-pre-59975bb" // Mar 28
8+
val v213 = "2.13.0-pre-041fc23" // Apr 2
99
Map(
1010
8 -> List(v213 -> true),
1111
11 -> List(v213 -> false),

core/src/main/scala/scala/collection/immutable/OldHashMap.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ sealed abstract class OldHashMap[K, +V]
3131
with MapOps[K, V, OldHashMap, OldHashMap[K, V]]
3232
with StrictOptimizedIterableOps[(K, V), Iterable, OldHashMap[K, V]]
3333
with StrictOptimizedMapOps[K, V, OldHashMap, OldHashMap[K, V]]
34+
with collection.MapFactoryDefaults[K, V, OldHashMap, Iterable]
3435
with Serializable {
3536

3637
import OldHashMap.{bufferSize, liftMerger, Merger, MergeFunction, nullToEmpty}

core/src/main/scala/scala/collection/immutable/OldHashSet.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ sealed abstract class OldHashSet[A]
2727
extends AbstractSet[A]
2828
with SetOps[A, OldHashSet, OldHashSet[A]]
2929
with StrictOptimizedIterableOps[A, OldHashSet, OldHashSet[A]]
30+
with collection.IterableFactoryDefaults[A, OldHashSet]
3031
with Serializable {
3132

3233
import OldHashSet.{bufferSize, LeafOldHashSet, nullToEmpty}

0 commit comments

Comments
 (0)