Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.x] avoid deprecated collection.mutable.MultiMap #1438

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions internal/zinc-testing/src/main/scala/xsbti/TestCallback.scala
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,18 @@ object TestCallback {
}

private def pairsToMultiMap[A, B](pairs: Seq[(A, B)]): Map[A, Set[B]] = {
import scala.collection.mutable.{ HashMap, MultiMap }
val emptyMultiMap = new HashMap[A, scala.collection.mutable.Set[B]] with MultiMap[A, B]
val multiMap = pairs.foldLeft(emptyMultiMap) {
case (acc, (key, value)) =>
acc.addBinding(key, value)
import scala.collection.mutable.HashMap
val multiMap = HashMap.empty[A, scala.collection.mutable.Set[B]]
pairs.foreach {
case (key, value) =>
multiMap.get(key) match {
case None =>
val set = collection.mutable.Set.empty[B]
set += value
multiMap(key) = set
case Some(set) =>
set += value
}
}
// convert all collections to immutable variants
multiMap.toMap.view.mapValues(_.toSet).toMap.withDefaultValue(Set.empty)
Expand Down