Index: /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/AbstractMapInfoReader.java
===================================================================
--- /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/AbstractMapInfoReader.java	(revision 30575)
+++ /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/AbstractMapInfoReader.java	(revision 30576)
@@ -5,5 +5,4 @@
 import java.io.File;
 import java.io.IOException;
-import java.io.InputStreamReader;
 import java.nio.charset.Charset;
 import java.nio.charset.IllegalCharsetNameException;
Index: /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java
===================================================================
--- /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java	(revision 30575)
+++ /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java	(revision 30576)
@@ -71,6 +71,4 @@
 
     // CoordSys clause
-    private MifProjection proj;
-    private MifDatum datum;
     private String units;
     private Double originLon;
@@ -78,9 +76,7 @@
     private Double stdP1;
     private Double stdP2;
-    private Double azimuth;
     private Double scaleFactor;
     private Double falseEasting;
     private Double falseNorthing;
-    private Double range;
     private Double minx;
     private Double miny;
@@ -119,6 +115,6 @@
 
     private void parseCoordSysSyntax1(String[] words) {
-        proj = MifProjection.forCode(Integer.parseInt(words[3]));
-        datum = MifDatum.forCode(Integer.parseInt(words[4]));
+        MifProjection proj = MifProjection.forCode(Integer.parseInt(words[3]));
+        MifDatum datum = MifDatum.forCode(Integer.parseInt(words[4]));
 
         // Custom datum: TODO: use custom decalage values
@@ -193,5 +189,5 @@
         // Azimuth
         if (proj == Hotine_Oblique_Mercator) {
-            azimuth = Double.parseDouble(words[8+offset]);
+            Double.parseDouble(words[8+offset]);
             // TODO: what's proj4 parameter ?
         }
@@ -251,5 +247,5 @@
         case Azimuthal_Equidistant_polar_aspect_only:
         case Lambert_Azimuthal_Equal_Area_polar_aspect_only:
-            range = Double.parseDouble(words[8+offset]);
+            Double.parseDouble(words[8+offset]);
             // TODO: what's proj4 parameter ?
         }
