Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

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

    r8470 r8510  
    267267    @Override
    268268    public int hashCode() {
    269         return (int)(ymin * xmin);
     269        return (int) (ymin * xmin);
    270270    }
    271271
     
    273273    public boolean equals(Object o) {
    274274        if (o instanceof BBox) {
    275             BBox b = (BBox)o;
     275            BBox b = (BBox) o;
    276276            return b.xmax == xmax && b.ymax == ymax
    277277                    && b.xmin == xmin && b.ymin == ymin;
Note: See TracChangeset for help on using the changeset viewer.