Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/OsmApiUrlInputPanel.java

    r8426 r8510  
    7272        gc.anchor = GridBagConstraints.NORTHWEST;
    7373        gc.weightx = 1.0;
    74         gc.insets = new Insets(0,0,0,0);
     74        gc.insets = new Insets(0, 0, 0, 0);
    7575        gc.gridwidth  = 4;
    7676        add(buildDefaultServerUrlPanel(), gc);
     
    8282        gc.gridwidth = 1;
    8383        gc.weightx = 0.0;
    84         gc.insets = new Insets(0,0,0,3);
     84        gc.insets = new Insets(0, 0, 0, 3);
    8585        add(lblApiUrl = new JLabel(tr("OSM Server URL:")), gc);
    8686
     
    255255                new URL(getComponent().getText().trim());
    256256                return true;
    257             } catch(MalformedURLException e) {
     257            } catch (MalformedURLException e) {
    258258                return false;
    259259            }
Note: See TracChangeset for help on using the changeset viewer.