summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/OpenHashMap.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-03-22 23:02:50 +0000
committerPaul Phillips <paulp@improving.org>2010-03-22 23:02:50 +0000
commit88aab1cf8e06f98ccd18437974c09162ee54149f (patch)
treeaafd69e2e195fb63341d4a01ffa90ced19cec0d9 /src/library/scala/collection/mutable/OpenHashMap.scala
parent4eff9e1cd51202b8c3bf7c8e0fe176a05f4d4acd (diff)
downloadscala-88aab1cf8e06f98ccd18437974c09162ee54149f.tar.gz
scala-88aab1cf8e06f98ccd18437974c09162ee54149f.tar.bz2
scala-88aab1cf8e06f98ccd18437974c09162ee54149f.zip
Noticed we still have a bunch of collection cla...
Noticed we still have a bunch of collection classes which are rather lacking. Did some integration, added some companion objects. Not thrilled with the overall picture in there, there's still a lot which should be done. Updated a deprecation message, closes #3202. No review.
Diffstat (limited to 'src/library/scala/collection/mutable/OpenHashMap.scala')
-rw-r--r--src/library/scala/collection/mutable/OpenHashMap.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/OpenHashMap.scala b/src/library/scala/collection/mutable/OpenHashMap.scala
index 9f0d9d2c25..79bb96a0bf 100644
--- a/src/library/scala/collection/mutable/OpenHashMap.scala
+++ b/src/library/scala/collection/mutable/OpenHashMap.scala
@@ -15,7 +15,7 @@ package mutable
/**
* @since 2.7
*/
-object OpenHashMap{
+object OpenHashMap {
def apply[K, V](elems : (K, V)*) = {
val dict = new OpenHashMap[K, V];
elems.foreach({case (x, y) => dict(x) = y});