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

[josm_plugins] fix compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LayerPropertiesDialog.java

    r29854 r30532  
    6666    private JTextField searchField = null;
    6767    private JScrollPane crsListScrollPane = null;
    68     private JList crsJList = null;
     68    private JList<String> crsJList = null;
    6969    private JButton useDefaultCRSButton = null;
    7070    private JButton applySelectedCRSButton = null;
     
    406406     * @return javax.swing.JList   
    407407     */
    408     private JList getCrsJList() {
     408    private JList<String> getCrsJList() {
    409409        if (crsJList == null) {
    410             crsJList = new JList(supportedCRS);
     410            crsJList = new JList<>(supportedCRS);
    411411            crsJList.addListSelectionListener(new ListSelectionHandler());
    412412        }
Note: See TracChangeset for help on using the changeset viewer.