Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (9 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

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

    r8419 r8444  
    336336        if (!(other instanceof Way))
    337337            return false;
    338         if (! super.hasEqualSemanticAttributes(other))
     338        if (!super.hasEqualSemanticAttributes(other))
    339339            return false;
    340340        Way w = (Way)other;
    341341        if (getNodesCount() != w.getNodesCount()) return false;
    342         for (int i=0;i<getNodesCount();i++) {
    343             if (! getNode(i).hasEqualSemanticAttributes(w.getNode(i)))
     342        for (int i=0; i<getNodesCount(); i++) {
     343            if (!getNode(i).hasEqualSemanticAttributes(w.getNode(i)))
    344344                return false;
    345345        }
Note: See TracChangeset for help on using the changeset viewer.