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/dialogs/changeset/ChangesetDetailPanel.java

    r8444 r8510  
    5252
    5353    private final JosmTextField tfID        = new JosmTextField(10);
    54     private final JosmTextArea  taComment   = new JosmTextArea(5,40);
     54    private final JosmTextArea  taComment   = new JosmTextArea(5, 40);
    5555    private final JosmTextField tfOpen      = new JosmTextField(10);
    5656    private final JosmTextField tfUser      = new JosmTextField("");
     
    111111        GridBagConstraints gc = new GridBagConstraints();
    112112        gc.anchor = GridBagConstraints.FIRST_LINE_START;
    113         gc.insets = new Insets(0,0,2,3);
     113        gc.insets = new Insets(0, 0, 2, 3);
    114114
    115115        //-- id
     
    193193    protected final void build() {
    194194        setLayout(new BorderLayout());
    195         setBorder(BorderFactory.createEmptyBorder(3,3,3,3));
     195        setBorder(BorderFactory.createEmptyBorder(3, 3, 3, 3));
    196196        add(buildDetailViewPanel(), BorderLayout.CENTER);
    197197        add(buildActionButtonPanel(), BorderLayout.WEST);
     
    261261        if (!evt.getPropertyName().equals(ChangesetCacheManagerModel.CHANGESET_IN_DETAIL_VIEW_PROP))
    262262            return;
    263         setCurrentChangeset((Changeset)evt.getNewValue());
     263        setCurrentChangeset((Changeset) evt.getNewValue());
    264264    }
    265265
Note: See TracChangeset for help on using the changeset viewer.