Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (11 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

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

    r8395 r8444  
    526526                }
    527527            } else if (mode == Mode.extrude) {
    528                 if( e.getClickCount() == 2 && e.getPoint().equals(initialMousePos) ) {
     528                if (e.getClickCount() == 2 && e.getPoint().equals(initialMousePos)) {
    529529                    // double click adds a new node
    530530                    addNewNode(e);
     
    857857        EastNorth n2en = selectedSegment.getSecondNode().getEastNorth();
    858858        if (n1en.distance(prevNode.getEastNorth())<1e-4 ||
    859             n2en.distance(nextNode.getEastNorth())<1e-4 ) {
     859            n2en.distance(nextNode.getEastNorth())<1e-4) {
    860860            return false;
    861861        }
Note: See TracChangeset for help on using the changeset viewer.