Ignore:
Timestamp:
2016-03-17T01:50:12+01:00 (8 years ago)
Author:
Don-vip
Message:

sonar - Local variable and method parameter names should comply with a naming convention

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java

    r9989 r10001  
    260260        JRadioButton add = new JRadioButton(tr("add to selection"), initialValues.mode == SearchMode.add);
    261261        JRadioButton remove = new JRadioButton(tr("remove from selection"), initialValues.mode == SearchMode.remove);
    262         JRadioButton in_selection = new JRadioButton(tr("find in selection"), initialValues.mode == SearchMode.in_selection);
     262        JRadioButton inSelection = new JRadioButton(tr("find in selection"), initialValues.mode == SearchMode.in_selection);
    263263        ButtonGroup bg = new ButtonGroup();
    264264        bg.add(replace);
    265265        bg.add(add);
    266266        bg.add(remove);
    267         bg.add(in_selection);
     267        bg.add(inSelection);
    268268
    269269        final JCheckBox caseSensitive = new JCheckBox(tr("case sensitive"), initialValues.caseSensitive);
     
    286286        left.add(add, GBC.eol());
    287287        left.add(remove, GBC.eol());
    288         left.add(in_selection, GBC.eop());
     288        left.add(inSelection, GBC.eop());
    289289        left.add(caseSensitive, GBC.eol());
    290290        if (Main.pref.getBoolean("expert", false)) {
Note: See TracChangeset for help on using the changeset viewer.