Skip to content

Commit

Permalink
Merge pull request #8005 from joshlemer/deprecate-multimap
Browse files Browse the repository at this point in the history
Deprecate scala.collection.mutable.MultiMap
  • Loading branch information
dwijnand committed Jun 18, 2019
2 parents db08362 + 34f5d3b commit 2e9c248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/library/scala/collection/mutable/MultiMap.scala
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ package scala.collection.mutable
* @define Coll `MultiMap`
* @since 1
*/
@deprecated("Use a scala.collection.mutable.MultiDict in the scala-collection-contrib module", "2.13.0")
trait MultiMap[K, V] extends Map[K, Set[V]] {
/** Creates a new set.
*
Expand Down
2 changes: 1 addition & 1 deletion test/files/run/t2857.check
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
warning: there was one deprecation warning (since 2.13.0); re-run with -deprecation for details
warning: there were two deprecation warnings (since 2.13.0); re-run with -deprecation for details
false

0 comments on commit 2e9c248

Please sign in to comment.