From: stephey Date: Wed, 8 Sep 2010 22:39:34 +0000 (+0000) Subject: Jim told me to change the int hashCodeSpecific() function to return id.hashCode(... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a2b34fa816f71719dd1fa390c1b06d1102ae047e;p=IRC.git Jim told me to change the int hashCodeSpecific() function to return id.hashCode() instead of id itself. --- diff --git a/Robust/src/Analysis/Disjoint/AllocSite.java b/Robust/src/Analysis/Disjoint/AllocSite.java index 6589ecb5..282162cf 100644 --- a/Robust/src/Analysis/Disjoint/AllocSite.java +++ b/Robust/src/Analysis/Disjoint/AllocSite.java @@ -299,6 +299,6 @@ public class AllocSite extends Canonical { } public int hashCodeSpecific() { - return id; + return id.hashCode(); } }