summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/MultiMap.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/mutable/MultiMap.scala')
-rw-r--r--src/library/scala/collection/mutable/MultiMap.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/MultiMap.scala b/src/library/scala/collection/mutable/MultiMap.scala
index 128ec0ff10..0f298c4a8a 100644
--- a/src/library/scala/collection/mutable/MultiMap.scala
+++ b/src/library/scala/collection/mutable/MultiMap.scala
@@ -36,9 +36,6 @@ trait MultiMap[A, B] extends Map[A, Set[B]] {
*/
protected def makeSet: Set[B] = new HashSet[B]
- @deprecated("use addBinding instead", "2.8.0")
- def add(key: A, value: B): this.type = addBinding(key, value)
-
/** Assigns the specified `value` to a specified `key`, replacing
* the existing value assigned to that `key` if it is equal to
* the specified value. Otherwise, simply adds another binding to