Skip to content

Commit e84f728

Browse files
committed
adapt to change in Scala 2.13.9
namely scala/scala#10047 this came up at scala/community-build#1579 not for merge until 2.13.9 is actually released; in the meantime we can use the branch in the community build
1 parent 0cd1694 commit e84f728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/scala/collection/MultiDict.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ trait MultiDictOps[K, V, +CC[X, Y] <: MultiDict[X, Y], +C <: MultiDict[K, V]]
198198
def filterSets(p: ((K, Set[V])) => Boolean): C =
199199
fromSpecificSets(new View.Filter(sets, p, isFlipped = false))
200200

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

0 commit comments

Comments
 (0)