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

    r10248 r10378  
    107107    public MoveCommand(Collection<OsmPrimitive> objects, EastNorth start, EastNorth end) {
    108108        this(objects, end.getX()-start.getX(), end.getY()-start.getY());
    109         startEN =  start;
     109        startEN = start;
    110110    }
    111111
     
    118118    public MoveCommand(OsmPrimitive p, EastNorth start, EastNorth end) {
    119119        this(Collections.singleton(p), end.getX()-start.getX(), end.getY()-start.getY());
    120         startEN =  start;
     120        startEN = start;
    121121    }
    122122
Note: See TracChangeset for help on using the changeset viewer.