Ignore:
Timestamp:
2014-07-14T04:18:06+02:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] fix compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/StringEnumConfigurer.java

    r23190 r30532  
    4444    protected String[] validValues;
    4545    protected String[] transValues;
    46     protected JComboBox box;
     46    protected JComboBox<String> box;
    4747    protected Box panel;
    4848    protected String tooltipText = "";
     
    6868            panel = Box.createHorizontalBox();
    6969            panel.add(new JLabel(name));
    70             box = new JComboBox(transValues);
     70            box = new JComboBox<>(transValues);
    7171            box.setToolTipText(tooltipText);
    7272            box.setMaximumSize(new Dimension(box.getMaximumSize().width,box.getPreferredSize().height));
Note: See TracChangeset for help on using the changeset viewer.