Changeset 8393 in josm for trunk/src/org/openstreetmap/josm/data/osm/BBox.java
- Timestamp:
- 2015-05-18T22:57:22+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/BBox.java
r8384 r8393 274 274 if (o instanceof BBox) { 275 275 BBox b = (BBox)o; 276 return Utils.equalsEpsilon(b.xmax, xmax) && Utils.equalsEpsilon(b.ymax, ymax)277 && Utils.equalsEpsilon(b.xmin, xmin) && Utils.equalsEpsilon(b.ymin, ymin);276 return b.xmax == xmax && b.ymax == ymax 277 && b.xmin == xmin && b.ymin == ymin; 278 278 } else 279 279 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
