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/pdfimport/src/pdfimport/LoadPdfDialog.java

    r29803 r30532  
    120120         * Combobox with all projections available
    121121         */
    122         private JComboBox projectionCombo;
     122        private JComboBox<ProjectionChoice> projectionCombo;
    123123        private JButton projectionPreferencesButton;
    124124        private JTextField minXField;
     
    247247                c.gridheight = 1;c.gridwidth = 1;c.weightx =1; c.weighty = 1; c.fill = GridBagConstraints.BOTH;
    248248
    249                 this.projectionCombo = new JComboBox();
     249                this.projectionCombo = new JComboBox<>();
    250250                for (ProjectionChoice p: ProjectionPreference.getProjectionChoices()) {
    251251                        this.projectionCombo.addItem(p);
Note: See TracChangeset for help on using the changeset viewer.