summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
index 8041b7a715..ac259ab7ff 100644
--- a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
@@ -135,11 +135,6 @@ trait SyntheticMethods extends ast.TreeDSL {
}
}
- // XXX short term, expecting to make murmur the default as soon as it is put through some paces.
- def hashCodeTarget: Name =
- if (settings.Ymurmur.value) "hashCodeMurmur"
- else nme.hashCode_
-
/** The equality method for case modules:
* def equals(that: Any) = this eq that
*/
@@ -257,7 +252,7 @@ trait SyntheticMethods extends ast.TreeDSL {
// methods for case classes only
def classMethods = List(
- Object_hashCode -> (() => forwardingMethod(nme.hashCode_, "_" + hashCodeTarget)),
+ Object_hashCode -> (() => forwardingMethod(nme.hashCode_, "_" + nme.hashCode_)),
Object_toString -> (() => forwardingMethod(nme.toString_, "_" + nme.toString_)),
Object_equals -> (() => equalsClassMethod)
)