Changeset 14137 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2018-08-12T01:03:35+02:00 (6 years ago)
Author:
Don-vip
Message:

see #15229 - checkstyle

File:
1 edited

Legend:

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

    r14134 r14137  
    512512                }
    513513
    514 
    515514            } else if (candidateNode != null) {
    516515                // Moving the highlighted node
     
    518517                EastNorth cursorEN = mv.getEastNorth(mousePos.x, mousePos.y);
    519518
    520                 UndoRedoHandler.getInstance().add(new MoveCommand(candidateNode, cursorEN.east() - nodeEN.east(), cursorEN.north() - nodeEN.north()));
     519                UndoRedoHandler.getInstance().add(
     520                        new MoveCommand(candidateNode, cursorEN.east() - nodeEN.east(), cursorEN.north() - nodeEN.north()));
    521521            }
    522522        }
Note: See TracChangeset for help on using the changeset viewer.