Skip to content

Commit

Permalink
Scala 2.13.10 (was .8), Scala 3.2.1 (was .1.3) (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue authored Oct 28, 2022
1 parent 1310a3c commit e04673b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ThisBuild / scalaVersion := "3.1.3"
ThisBuild / crossScalaVersions := Seq((ThisBuild / scalaVersion).value, "2.13.8")
ThisBuild / scalaVersion := "3.2.1"
ThisBuild / crossScalaVersions := Seq((ThisBuild / scalaVersion).value, "2.13.10")

lazy val root = project.in(file("."))
.aggregate(collectionContrib.jvm, collectionContrib.js, collectionContrib.native)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/scala/collection/MultiDict.scala
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ trait MultiDictOps[K, V, +CC[X, Y] <: MultiDict[X, Y], +C <: MultiDict[K, V]]
def filterSets(p: ((K, Set[V])) => Boolean): C =
fromSpecificSets(new View.Filter(sets, p, isFlipped = false))

override def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder =
override def addString(sb: StringBuilder, start: String, sep: String, end: String): sb.type =
iterator.map { case (k, v) => s"$k -> $v" }.addString(sb, start, sep, end)
}

Expand Down

0 comments on commit e04673b

Please sign in to comment.