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

remove extra whitespaces

Location:
trunk/src/org/openstreetmap/josm/gui/download
Files:
2 edited

Legend:

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

    r7712 r8444  
    286286            }
    287287            if (!LatLon.isValidLon(minlon) || !LatLon.isValidLon(maxlon)
    288                     || !LatLon.isValidLat(minlat) || ! LatLon.isValidLat(maxlat))
     288                    || !LatLon.isValidLat(minlat) || !LatLon.isValidLat(maxlat))
    289289                return null;
    290290            if (minlon > maxlon)
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java

    r8342 r8444  
    367367        cbDownloadNotes.setSelected(Main.pref.getBoolean("download.notes", false));
    368368        cbNewLayer.setSelected(Main.pref.getBoolean("download.newlayer", false));
    369         cbStartup.setSelected( isAutorunEnabled() );
     369        cbStartup.setSelected(isAutorunEnabled());
    370370        int idx = Main.pref.getInteger("download.tab", 0);
    371371        if (idx < 0 || idx > tpDownloadAreaSelectors.getTabCount()) {
Note: See TracChangeset for help on using the changeset viewer.