summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/HashTable.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/mutable/HashTable.scala')
-rw-r--r--src/library/scala/collection/mutable/HashTable.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/library/scala/collection/mutable/HashTable.scala b/src/library/scala/collection/mutable/HashTable.scala
index be0a84bd41..56843013ad 100644
--- a/src/library/scala/collection/mutable/HashTable.scala
+++ b/src/library/scala/collection/mutable/HashTable.scala
@@ -131,10 +131,9 @@ trait HashTable[A] extends AnyRef {
}
}
- /** An iterator returning all entries
- * @deprecated use entriesIterator instead
- */
- @deprecated protected def entries: Iterator[Entry] = entriesIterator
+ /** An iterator returning all entries */
+ @deprecated("use entriesIterator instead")
+ protected def entries: Iterator[Entry] = entriesIterator
/** Remove all entries from table
*/