Index: applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java
===================================================================
--- applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java	(revision 29962)
+++ applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java	(revision 29963)
@@ -78,5 +78,5 @@
 	private JLabel totalTimeLabel;
 	private JLabel distLabel;
-	private JComboBox<IElevationProfile> trackCombo;
+	private JComboBox trackCombo;
 	private JButton zoomButton;
 	
@@ -185,5 +185,5 @@
 		zoomButton.setEnabled(false);
 		
-		trackCombo = new JComboBox<IElevationProfile>(new TrackModel());		
+		trackCombo = new JComboBox(new TrackModel());		
 		trackCombo.setPreferredSize(new Dimension(200, 24)); // HACK!
 		trackCombo.setEnabled(false); // we have no model on startup
@@ -452,5 +452,5 @@
 	
 	
-	class TrackModel implements ComboBoxModel<IElevationProfile> {
+	class TrackModel implements ComboBoxModel {
 	    private Collection<ListDataListener> listeners;
 
