Skip to content

Commit fcf5093

Browse files
committed
Revert "adapt to scala/scala#7696"
This reverts commit 17647af. the upstream change was reverted, so we revert this too also use latest Scala nightly
1 parent 63fa3cc commit fcf5093

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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-d645559" // Feb 27
8+
val v213 = "2.13.0-pre-eb074a8" // Mar 27
99
Map(
1010
8 -> List(v213 -> true),
1111
11 -> List(v213 -> false),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ sealed abstract class OldHashSet[A]
5050
super.subsetOf(that)
5151
}
5252

53-
override def concat(that: collection.IterableOnce[A])(implicit dummy: DummyImplicit): OldHashSet[A] = that match {
53+
override def concat(that: collection.IterableOnce[A]): OldHashSet[A] = that match {
5454
case that: OldHashSet[A] =>
5555
val buffer = new Array[OldHashSet[A]](bufferSize(this.size + that.size))
5656
nullToEmpty(union0(that, 0, buffer, 0))

0 commit comments

Comments
 (0)