Ignore:
Timestamp:
2013-07-17T00:01:07+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/MoveAction.java

    r5377 r6069  
    115115        ? Main.main.undoRedo.commands.getLast() : null;
    116116
    117         getCurrentDataSet().beginUpdate(); 
     117        getCurrentDataSet().beginUpdate();
    118118        if (c instanceof MoveCommand && affectedNodes.equals(((MoveCommand)c).getParticipatingPrimitives())) {
    119119            ((MoveCommand)c).moveAgain(distx, disty);
     
    122122                    c = new MoveCommand(selection, distx, disty));
    123123        }
    124         getCurrentDataSet().endUpdate(); 
    125        
     124        getCurrentDataSet().endUpdate();
     125
    126126        for (Node n : affectedNodes) {
    127127            if (n.getCoor().isOutSideWorld()) {
Note: See TracChangeset for help on using the changeset viewer.