Changeset 30532 in osm for applications/editors/josm/plugins/ImportImagePlugin/src
- Timestamp:
- 2014-07-14T04:18:06+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/LayerPropertiesDialog.java
r29854 r30532 66 66 private JTextField searchField = null; 67 67 private JScrollPane crsListScrollPane = null; 68 private JList crsJList = null; 68 private JList<String> crsJList = null; 69 69 private JButton useDefaultCRSButton = null; 70 70 private JButton applySelectedCRSButton = null; … … 406 406 * @return javax.swing.JList 407 407 */ 408 private JList getCrsJList() { 408 private JList<String> getCrsJList() { 409 409 if (crsJList == null) { 410 crsJList = new JList(supportedCRS); 410 crsJList = new JList<>(supportedCRS); 411 411 crsJList.addListSelectionListener(new ListSelectionHandler()); 412 412 }
Note:
See TracChangeset
for help on using the changeset viewer.