summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenMapLike.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-09-08 05:43:32 +0000
committerPaul Phillips <paulp@improving.org>2011-09-08 05:43:32 +0000
commit52c1d019d63d2fffadc8f3f159d654187ac61ece (patch)
tree6958700cb96b574b0894b3792f76be68d2a7161d /src/library/scala/collection/GenMapLike.scala
parentc37e8f45cf86d0a3f6cb084e85f9751f5e906bf2 (diff)
downloadscala-52c1d019d63d2fffadc8f3f159d654187ac61ece.tar.gz
scala-52c1d019d63d2fffadc8f3f159d654187ac61ece.tar.bz2
scala-52c1d019d63d2fffadc8f3f159d654187ac61ece.zip
Refinement of murmurhash implementation.
Integrates recent speed improvements to algorithm. Contributed by Ruediger Keller, no review.
Diffstat (limited to 'src/library/scala/collection/GenMapLike.scala')
-rw-r--r--src/library/scala/collection/GenMapLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/GenMapLike.scala b/src/library/scala/collection/GenMapLike.scala
index 6060087d54..f4a3903c13 100644
--- a/src/library/scala/collection/GenMapLike.scala
+++ b/src/library/scala/collection/GenMapLike.scala
@@ -32,7 +32,7 @@ trait GenMapLike[A, +B, +Repr] extends GenIterableLike[(A, B), Repr] with Equals
// This hash code must be symmetric in the contents but ought not
// collide trivially.
- override def hashCode() = util.MurmurHash.symmetricHash(seq, Map.hashSeed)
+ override def hashCode() = util.MurmurHash3.symmetricHash(seq, Map.hashSeed)
/** Returns the value associated with a key, or a default value if the key is not contained in the map.
* @param key the key.