summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-10 07:47:52 -0700
committerPaul Phillips <paulp@improving.org>2012-05-10 07:47:52 -0700
commit391524d99c5caaced0e1aacbb867ff15fca7e756 (patch)
tree21f594af7aa10518664d3d8025c9166992eaa8b4 /src
parent1fdc6cc6addf5f4277a14bdde4f5c82bb669c1ed (diff)
parentebfc16f6709f928a8ba1aa9d40f6bfddec69848b (diff)
downloadscala-391524d99c5caaced0e1aacbb867ff15fca7e756.tar.gz
scala-391524d99c5caaced0e1aacbb867ff15fca7e756.tar.bz2
scala-391524d99c5caaced0e1aacbb867ff15fca7e756.zip
Merge commit 'refs/pull/521/head' into develop
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/runtime/BoxesRunTime.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/library/scala/runtime/BoxesRunTime.java b/src/library/scala/runtime/BoxesRunTime.java
index 258a176671..8fe9a017d0 100644
--- a/src/library/scala/runtime/BoxesRunTime.java
+++ b/src/library/scala/runtime/BoxesRunTime.java
@@ -228,7 +228,7 @@ public final class BoxesRunTime
* as yet have not.
*
* Note: Among primitives, Float.NaN != Float.NaN, but the boxed
- * verisons are equal. This still needs reconciliation.
+ * versions are equal. This still needs reconciliation.
*/
public static int hashFromLong(java.lang.Long n) {
int iv = n.intValue();
@@ -242,6 +242,9 @@ public final class BoxesRunTime
long lv = n.longValue();
if (lv == dv) return java.lang.Long.valueOf(lv).hashCode();
+
+ float fv = n.floatValue();
+ if (fv == dv) return java.lang.Float.valueOf(fv).hashCode();
else return n.hashCode();
}
public static int hashFromFloat(java.lang.Float n) {