Index: /applications/editors/josm/plugins/opendata/build.xml
===================================================================
--- /applications/editors/josm/plugins/opendata/build.xml	(revision 31007)
+++ /applications/editors/josm/plugins/opendata/build.xml	(revision 31008)
@@ -6,5 +6,5 @@
     <property name="plugin.description" value="Convert data from Open Data portals to OSM layer"/>
     <property name="plugin.icon" value="images/dialogs/o24.png"/>
-    <property name="plugin.canloadatruntime" value="true"/>
+    <property name="plugin.canloadatruntime" value="false"/>
     <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData"/>
     <property name="plugin.requires" value="jts;geotools;utilsplugin2"/>
Index: /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java
===================================================================
--- /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java	(revision 31007)
+++ /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java	(revision 31008)
@@ -305,5 +305,6 @@
         try {
             ReadLocalModuleInformationTask task = new ReadLocalModuleInformationTask(monitor);
-            Future<?> future = Main.worker.submit(task);
+            ExecutorService service = Executors.newSingleThreadExecutor();
+            Future<?> future = service.submit(task);
             try {
                 future.get();
