Anally removed Comparator.equals() implementations that overrode

Object.equals() with equivalent functionality.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1799 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-10-15 21:01:39 +00:00
parent 107273fce3
commit be2bc4205b
5 changed files with 5 additions and 30 deletions
@@ -1,5 +1,5 @@
//
// $Id: DSet.java,v 1.20 2002/10/06 20:24:53 mdb Exp $
// $Id: DSet.java,v 1.21 2002/10/15 21:01:39 ray Exp $
package com.threerings.presents.dobj;
@@ -348,10 +348,5 @@ public class DSet
((Entry)o2).getKey() : (Comparable)o2;
return c1.compareTo(c2);
}
public boolean equals (Object obj) {
// we don't care about comparing comparators
return (obj == this);
}
};
}