Changeset 9384 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2016-01-10T13:04:11+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r9375 r9384 435 435 public boolean equals(Object obj) { 436 436 if (this == obj) return true; 437 if ( obj == null || getClass() != obj.getClass()) return false;437 if (!(obj instanceof LatLon)) return false; 438 438 LatLon that = (LatLon) obj; 439 439 return Double.compare(that.x, x) == 0 &&
Note:
See TracChangeset
for help on using the changeset viewer.