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 29958)
+++ applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/ElevationProfileDialog.java	(revision 29959)
@@ -32,5 +32,4 @@
 import javax.swing.JLabel;
 import javax.swing.JPanel;
-import javax.swing.event.ListDataEvent;
 import javax.swing.event.ListDataListener;
 
@@ -75,5 +74,5 @@
 	private JLabel totalTimeLabel;
 	private JLabel distLabel;
-	private JComboBox<IElevationProfile> trackCombo;
+	private JComboBox trackCombo;
 	
 	/* Listener to the elevation model */
@@ -167,5 +166,5 @@
 		trackPanel.add(lbTrack);
 		
-		trackCombo = new JComboBox<IElevationProfile>(new TrackModel());
+		trackCombo = new JComboBox(new TrackModel());
 		trackPanel.add(trackCombo);
 
@@ -421,5 +420,5 @@
 	
 	
-	class TrackModel implements ComboBoxModel<IElevationProfile> {
+	class TrackModel implements ComboBoxModel {
 	    private Collection<ListDataListener> listeners;
 
