summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenSetLike.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/GenSetLike.scala')
-rw-r--r--src/library/scala/collection/GenSetLike.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/GenSetLike.scala b/src/library/scala/collection/GenSetLike.scala
index 219374abc6..18eb31da03 100644
--- a/src/library/scala/collection/GenSetLike.scala
+++ b/src/library/scala/collection/GenSetLike.scala
@@ -127,5 +127,5 @@ extends GenIterableLike[A, Repr]
// Calling map on a set drops duplicates: any hashcode collisions would
// then be dropped before they can be added.
// Hash should be symmetric in set entries, but without trivial collisions.
- override def hashCode() = util.MurmurHash3.setHash(seq)
+ override def hashCode() = util.hashing.MurmurHash3.setHash(seq)
}