Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

File:
1 edited

Legend:

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

    r10040 r10378  
    634634            }
    635635            super.setIncomplete(incomplete);
    636         }  finally {
     636        } finally {
    637637            writeUnlock(locked);
    638638        }
     
    12661266
    12671267    boolean hasEqualSemanticAttributes(final OsmPrimitive other, final boolean testInterestingTagsOnly) {
    1268         if (!isNew() &&  id != other.id)
     1268        if (!isNew() && id != other.id)
    12691269            return false;
    12701270        if (isIncomplete() ^ other.isIncomplete()) // exclusive or operator for performance (see #7159)
     
    12911291        if (other == null) return false;
    12921292
    1293         return  isDeleted() == other.isDeleted()
     1293        return isDeleted() == other.isDeleted()
    12941294                && isModified() == other.isModified()
    12951295                && timestamp == other.timestamp
Note: See TracChangeset for help on using the changeset viewer.