Index: /applications/editors/josm/plugins/mirrored_download/build.xml
===================================================================
--- /applications/editors/josm/plugins/mirrored_download/build.xml	(revision 28173)
+++ /applications/editors/josm/plugins/mirrored_download/build.xml	(revision 28174)
@@ -26,5 +26,5 @@
     <!-- this is the directory where the plugin jar is copied to -->
     <property name="plugin.dist.dir" value="${josm.basedir}/dist"/>
-    <property name="ant.build.javac.target" value="1.5"/>
+    <property name="ant.build.javac.target" value="1.6"/>
     <property name="plugin.dist.dir" value="${josm.basedir}/dist"/>
     <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
Index: /applications/editors/josm/plugins/mirrored_download/src/mirrored_download/MirroredDownloadAction.java
===================================================================
--- /applications/editors/josm/plugins/mirrored_download/src/mirrored_download/MirroredDownloadAction.java	(revision 28173)
+++ /applications/editors/josm/plugins/mirrored_download/src/mirrored_download/MirroredDownloadAction.java	(revision 28174)
@@ -88,5 +88,5 @@
     static class MirroredDownloadDialog extends DownloadDialog {
 
-        protected JComboBox<String> overpassType;
+        protected JComboBox/*<String>*/ overpassType;
         protected HistoryComboBox overpassQuery;
         private static MirroredDownloadDialog instance;
@@ -108,5 +108,5 @@
         @Override
         protected void buildMainPanelAboveDownloadSelections(JPanel pnl) {
-            overpassType = new JComboBox<String>(new String[]{"*", "node", "way", "relation"});
+            overpassType = new JComboBox/*<String>*/(new String[]{"*", "node", "way", "relation"});
             pnl.add(new JLabel(tr("Object type: ")), GBC.std().insets(5, 5, 5, 5));
             pnl.add(overpassType, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
@@ -124,5 +124,5 @@
 
         public String getOverpassType() {
-            return overpassType.getItemAt(overpassType.getSelectedIndex());
+            return (String)overpassType.getItemAt(overpassType.getSelectedIndex());
         }
 
