Ignore:
Timestamp:
2015-05-18T22:57:22+02:00 (11 years ago)
Author:
Don-vip
Message:

see #11447 - partial revert of r8384

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/BBox.java

    r8384 r8393  
    274274        if (o instanceof BBox) {
    275275            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;
    278278        } else
    279279            return false;
Note: See TracChangeset for help on using the changeset viewer.