Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (11 years ago)
Author:
donvip
Message:

[josm_plugins] fix Java 7 / unused code warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/src/panels/PanelSaw.java

    r29894 r30737  
    2020        public JRadioButton floatButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/FloatButton.png")));
    2121        public JRadioButton beaconButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/BeaconButton.png")));
    22         public EnumMap<Shp, JRadioButton> shapes = new EnumMap<Shp, JRadioButton>(Shp.class);
    23         public EnumMap<Shp, Obj> objects = new EnumMap<Shp, Obj>(Shp.class);
     22        public EnumMap<Shp, JRadioButton> shapes = new EnumMap<>(Shp.class);
     23        public EnumMap<Shp, Obj> objects = new EnumMap<>(Shp.class);
    2424        public ActionListener alShape = new ActionListener() {
    2525                public void actionPerformed(java.awt.event.ActionEvent e) {
Note: See TracChangeset for help on using the changeset viewer.