Index: src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java
===================================================================
--- src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java	(revision 34970)
+++ src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java	(working copy)
@@ -63,6 +63,7 @@
 import org.openstreetmap.josm.tools.ImageProvider;
 import org.openstreetmap.josm.tools.ImageProvider.ImageSizes;
 import org.openstreetmap.josm.tools.Logging;
+import org.openstreetmap.josm.tools.ReflectionUtils;
 import org.openstreetmap.josm.tools.UserCancelException;
 import org.openstreetmap.josm.tools.Utils;
 
@@ -353,7 +354,7 @@
                     if (epsgCode != null) {
                         try {
                             Field f = AbstractIdentifiedObject.class.getDeclaredField("identifiers");
-                            Utils.setObjectsAccessible(f);
+                            ReflectionUtils.setObjectsAccessible(f);
                             f.set(crs, Collections.singleton(new NamedIdentifier(Citations.fromName("EPSG"), epsgCode.toString())));
                         } catch (ReflectiveOperationException | SecurityException e) {
                             Logging.error(e);
Index: src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/TabFiles.java
===================================================================
--- src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/TabFiles.java	(revision 34970)
+++ src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/TabFiles.java	(working copy)
@@ -18,7 +18,7 @@
 import org.geotools.util.URLs;
 import org.openstreetmap.josm.tools.JosmRuntimeException;
 import org.openstreetmap.josm.tools.Logging;
-import org.openstreetmap.josm.tools.Utils;
+import org.openstreetmap.josm.tools.ReflectionUtils;
 
 /**
  * Extension of {@link ShpFiles} class modified to fit MapInfo TAB needs.
@@ -39,7 +39,7 @@
 
         try {
             Field furls = ShpFiles.class.getDeclaredField("urls");
-            Utils.setObjectsAccessible(furls);
+            ReflectionUtils.setObjectsAccessible(furls);
             urls = (Map<ShpFileType, URL>) furls.get(this);
         } catch (ReflectiveOperationException e) {
             throw new JosmRuntimeException(e);
