summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/OpenHashMap.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-11-18 05:41:16 +0000
committerPaul Phillips <paulp@improving.org>2009-11-18 05:41:16 +0000
commit7bad13f1799234ef8ebdde07f304319d4fd035d2 (patch)
tree46eb278d56028a0018bc514f6f3e44c2dd4422e0 /src/library/scala/collection/mutable/OpenHashMap.scala
parent6a23aa029bb78aa6f769b3daab71bb8330af5f3f (diff)
downloadscala-7bad13f1799234ef8ebdde07f304319d4fd035d2.tar.gz
scala-7bad13f1799234ef8ebdde07f304319d4fd035d2.tar.bz2
scala-7bad13f1799234ef8ebdde07f304319d4fd035d2.zip
More deprecation work.
since 2.7.2 (still except for lower case primitive type aliases) and removes every deprecated method which has never shipped in a release.
Diffstat (limited to 'src/library/scala/collection/mutable/OpenHashMap.scala')
-rw-r--r--src/library/scala/collection/mutable/OpenHashMap.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/OpenHashMap.scala b/src/library/scala/collection/mutable/OpenHashMap.scala
index 044ae59fd8..5582d48355 100644
--- a/src/library/scala/collection/mutable/OpenHashMap.scala
+++ b/src/library/scala/collection/mutable/OpenHashMap.scala
@@ -189,9 +189,6 @@ class OpenHashMap[Key, Value](initialSize : Int) extends scala.collection.mutabl
}
}
- @deprecated("use `iterator' instead")
- override def elements: Iterator[(Key, Value)] = iterator
-
override def clone : OpenHashMap[Key, Value] = {
val it = new OpenHashMap[Key, Value]
foreachUndeletedEntry(entry => it.put(entry.key, entry.hash, entry.value.get));