Changeset 30737 in osm for applications/editors/josm/plugins/smed/src/panels/PanelLit.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/src/panels/PanelLit.java
r30532 r30737 40 40 public JLabel visibilityLabel; 41 41 public JComboBox<String> visibilityBox; 42 public EnumMap<Vis, Integer> visibilities = new EnumMap< Vis, Integer>(Vis.class);42 public EnumMap<Vis, Integer> visibilities = new EnumMap<>(Vis.class); 43 43 private ActionListener alVisibility = new ActionListener() { 44 44 public void actionPerformed(java.awt.event.ActionEvent e) { … … 80 80 public JLabel categoryLabel; 81 81 public JComboBox<String> categoryBox; 82 public EnumMap<Lit, Integer> categories = new EnumMap< Lit, Integer>(Lit.class);82 public EnumMap<Lit, Integer> categories = new EnumMap<>(Lit.class); 83 83 private ActionListener alCategory = new ActionListener() { 84 84 public void actionPerformed(java.awt.event.ActionEvent e) { … … 116 116 public JLabel exhibitionLabel; 117 117 public JComboBox<String> exhibitionBox; 118 public EnumMap<Exh, Integer> exhibitions = new EnumMap< Exh, Integer>(Exh.class);118 public EnumMap<Exh, Integer> exhibitions = new EnumMap<>(Exh.class); 119 119 private ActionListener alExhibition = new ActionListener() { 120 120 public void actionPerformed(java.awt.event.ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.
