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/coor/EastNorth.java

    r10334 r10378  
    162162        double x = east() - pivot.east();
    163163        double y = north() - pivot.north();
     164        // CHECKSTYLE.OFF: SingleSpaceSeparator
    164165        double nx =  cosPhi * x + sinPhi * y + pivot.east();
    165166        double ny = -sinPhi * x + cosPhi * y + pivot.north();
     167        // CHECKSTYLE.ON: SingleSpaceSeparator
    166168        return new EastNorth(nx, ny);
    167169    }
Note: See TracChangeset for help on using the changeset viewer.