Changeset 30532 in osm for applications/editors/josm/plugins/smed/src/panels/PanelRadar.java
- Timestamp:
- 2014-07-14T04:18:06+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/panels/PanelRadar.java
r29894 r30532 28 28 } 29 29 }; 30 private JComboBox radioCatBox;30 private JComboBox<String> radioCatBox; 31 31 private EnumMap<Cat, Integer> radioCats = new EnumMap<Cat, Integer>(Cat.class); 32 32 private ActionListener alRadioCatBox = new ActionListener() { … … 175 175 add(aisButton); 176 176 177 radioCatBox = new JComboBox ();177 radioCatBox = new JComboBox<>(); 178 178 radioCatBox.setBounds(new Rectangle(210, 40, 150, 20)); 179 179 add(radioCatBox);
Note:
See TracChangeset
for help on using the changeset viewer.