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/tagging/TagEditorPanel.java

    r8345 r8510  
    7575        JButton btn;
    7676        pnl.add(btn = new JButton(tagTable.getAddAction()));
    77         btn.setMargin(new Insets(0,0,0,0));
     77        btn.setMargin(new Insets(0, 0, 0, 0));
    7878        tagTable.addComponentNotStoppingCellEditing(btn);
    7979
    8080        // delete action
    8181        pnl.add(btn = new JButton(tagTable.getDeleteAction()));
    82         btn.setMargin(new Insets(0,0,0,0));
     82        btn.setMargin(new Insets(0, 0, 0, 0));
    8383        tagTable.addComponentNotStoppingCellEditing(btn);
    8484
    8585        // paste action
    8686        pnl.add(btn = new JButton(tagTable.getPasteAction()));
    87         btn.setMargin(new Insets(0,0,0,0));
     87        btn.setMargin(new Insets(0, 0, 0, 0));
    8888        tagTable.addComponentNotStoppingCellEditing(btn);
    8989        return pnl;
     
    110110        gc.weighty = 1.0;
    111111        gc.anchor = GridBagConstraints.NORTHWEST;
    112         add(buttonPanel,gc);
     112        add(buttonPanel, gc);
    113113
    114114        // -- the panel with the editor table
     
    119119        gc.weighty = 1.0;
    120120        gc.anchor = GridBagConstraints.CENTER;
    121         add(tablePanel,gc);
     121        add(tablePanel, gc);
    122122
    123123        if (presetHandler != null) {
Note: See TracChangeset for help on using the changeset viewer.