Ignore:
Timestamp:
2016-01-10T13:04:11+01:00 (9 years ago)
Author:
simon04
Message:

Add unit test for CorrelateGpxWithImages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r9375 r9384  
    435435    public boolean equals(Object obj) {
    436436        if (this == obj) return true;
    437         if (obj == null || getClass() != obj.getClass()) return false;
     437        if (!(obj instanceof LatLon)) return false;
    438438        LatLon that = (LatLon) obj;
    439439        return Double.compare(that.x, x) == 0 &&
Note: See TracChangeset for help on using the changeset viewer.