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/PlayHeadDragMode.java

    r8393 r8444  
    5555        if ((ev.getModifiersEx() & MouseEvent.BUTTON1_DOWN_MASK) == 0) return;
    5656        Point p = ev.getPoint();
    57         if (! dragging) {
     57        if (!dragging) {
    5858            if (p.distance(mouseStart) < 3) return;
    5959            playHeadMarker.startDrag();
     
    6868        Point p = ev.getPoint();
    6969        mouseStart = null;
    70         if (ev.getButton() != MouseEvent.BUTTON1 || p == null || ! dragging)
     70        if (ev.getButton() != MouseEvent.BUTTON1 || p == null || !dragging)
    7171            return;
    7272
     
    7575
    7676        EastNorth en = Main.map.mapView.getEastNorth(ev.getX(), ev.getY());
    77         if (! shift) {
     77        if (!shift) {
    7878            playHeadMarker.reposition(en);
    7979        } else {
Note: See TracChangeset for help on using the changeset viewer.