Ignore:
Timestamp:
2015-06-02T16:40:38+02:00 (8 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

Location:
trunk/src/org/openstreetmap/josm/command
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/ChangePropertyKeyCommand.java

    r8378 r8443  
    8282    @Override
    8383    public String getDescriptionText() {
    84         String text = tr( "Replace \"{0}\" by \"{1}\" for", key, newKey);
     84        String text = tr("Replace \"{0}\" by \"{1}\" for", key, newKey);
    8585        if (objects.size() == 1) {
    8686            NameVisitor v = new NameVisitor();
  • trunk/src/org/openstreetmap/josm/command/RotateCommand.java

    r8392 r8443  
    5050     **/
    5151    protected final double getAngle(EastNorth currentEN) {
    52         if ( pivot == null )
     52        if (pivot == null)
    5353            return 0.0; // should never happen by contract
    5454        return Math.atan2(currentEN.east()-pivot.east(), currentEN.north()-pivot.north());
  • trunk/src/org/openstreetmap/josm/command/TransformNodesCommand.java

    r8285 r8443  
    133133        EastNorth sum = new EastNorth(0,0);
    134134
    135         for (Node n : nodes ) {
     135        for (Node n : nodes) {
    136136            EastNorth en = n.getEastNorth();
    137137            sum = sum.add(en.east(), en.north());
Note: See TracChangeset for help on using the changeset viewer.