Bump Java library versions
[fw/altos] / altoslib / AltosLatLon.java
index dc606ccb74bb517c5e53bded970937bca073c913..e438a7872df25cf949f9296efb8e84373cc2d79f 100644 (file)
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altoslib_7;
+package org.altusmetrum.altoslib_8;
 
 public class AltosLatLon {
        public double   lat;
        public double   lon;
 
-       public boolean equals(AltosLatLon other) {
-               if (other == null)
+       public int hashCode() {
+               return new Double(lat).hashCode() ^ new Double(lon).hashCode();
+       }
+
+       public boolean equals(Object o) {
+               if (o == null)
                        return false;
+               if (!(o instanceof AltosLatLon))
+                       return false;
+
+               AltosLatLon other = (AltosLatLon) o;
                return lat == other.lat && lon == other.lon;
        }