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/PanelPort.java

    r29894 r30737  
    2424        public JRadioButton perchButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/PerchPButton.png")));
    2525        public JRadioButton stakeButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/StakeButton.png")));
    26         public EnumMap<Shp, JRadioButton> shapes = new EnumMap<Shp, JRadioButton>(Shp.class);
    27         public EnumMap<Shp, Obj> objects = new EnumMap<Shp, Obj>(Shp.class);
     26        public EnumMap<Shp, JRadioButton> shapes = new EnumMap<>(Shp.class);
     27        public EnumMap<Shp, Obj> objects = new EnumMap<>(Shp.class);
    2828        public ActionListener alShape = new ActionListener() {
    2929                public void actionPerformed(java.awt.event.ActionEvent e) {
Note: See TracChangeset for help on using the changeset viewer.