From ea0d891f238082089be037a0752215d9d21893cf Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 15 Sep 2012 14:09:46 -0700 Subject: More relative path elimination. Some names I missed in 55b609458fd . How one might know when one is done: mkdir scratch && cd scratch mkdir annotation beans collection compat concurrent io \ math parallel ref reflect runtime scala sys testing \ text tools util xml scalac $(find ../src/library -name '*.scala') Until recently that would fail with about a billion errors. When it compiles, that's when you're done. And that's where this commit takes us, for src/library at least. --- src/library/scala/collection/GenSetLike.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/library/scala/collection/GenSetLike.scala') diff --git a/src/library/scala/collection/GenSetLike.scala b/src/library/scala/collection/GenSetLike.scala index 18eb31da03..ef5f14ed55 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.hashing.MurmurHash3.setHash(seq) + override def hashCode()= scala.util.hashing.MurmurHash3.setHash(seq) } -- cgit v1.2.3