summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-13 08:05:31 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-08-13 08:05:31 +0000
commitb9578ddc254b8897b353a3f644cb9562e3527f03 (patch)
tree2e89e77d34c90f6c955ed9c4d1697f41f46540a3 /src
parenta4ace3820be2fbc096eb68ae75719b563f8fa984 (diff)
downloadscala-b9578ddc254b8897b353a3f644cb9562e3527f03.tar.gz
scala-b9578ddc254b8897b353a3f644cb9562e3527f03.tar.bz2
scala-b9578ddc254b8897b353a3f644cb9562e3527f03.zip
Forgot to add author field.
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/mutable/OpenHashMap.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/library/scala/collection/mutable/OpenHashMap.scala b/src/library/scala/collection/mutable/OpenHashMap.scala
index c63ff28718..f427c883d9 100644
--- a/src/library/scala/collection/mutable/OpenHashMap.scala
+++ b/src/library/scala/collection/mutable/OpenHashMap.scala
@@ -32,6 +32,7 @@ import OpenHashMap.Entry;
* codes is not unneccessarily penalised. In particular, mappings of consecutive integer
* keys should work without significant performance loss.
*
+ * @author David MacIver
*/
class OpenHashMap[Key, Value](initialSize : Int) extends scala.collection.mutable.Map[Key, Value]{
def this() = this(8);