Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MapView.java

    r10375 r10378  
    564564    public void rememberLastPositionOnScreen() {
    565565        oldSize = getSize();
    566         oldLoc  = getLocationOnScreen();
     566        oldLoc = getLocationOnScreen();
    567567    }
    568568
     
    949949        // if the position was remembered, we need to adjust center once before repainting
    950950        if (oldLoc != null && oldSize != null) {
    951             Point l1  = getLocationOnScreen();
     951            Point l1 = getLocationOnScreen();
    952952            final EastNorth newCenter = new EastNorth(
    953953                    getCenter().getX()+ (l1.x-oldLoc.x - (oldSize.width-getWidth())/2.0)*getScale(),
Note: See TracChangeset for help on using the changeset viewer.