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/command/PurgeCommand.java

    r8509 r8510  
    8484             * Loop from back to front to keep referential integrity.
    8585             */
    86             for (int i=toPurge.size()-1; i>=0; --i) {
     86            for (int i = toPurge.size()-1; i >= 0; --i) {
    8787                OsmPrimitive osm = toPurge.get(i);
    8888                if (makeIncompleteDataByPrimId.containsKey(osm)) {
     
    214214                Integer i = numChilds.get(parent);
    215215                if (i != null) {
    216                     numChilds.put((Relation)parent, i+1);
     216                    numChilds.put((Relation) parent, i+1);
    217217                }
    218218            }
Note: See TracChangeset for help on using the changeset viewer.