Ignore:
Timestamp:
2015-02-17T00:35:21+01:00 (10 years ago)
Author:
donvip
Message:

[josm_opendata] disable load at runtime, does not work

Location:
applications/editors/josm/plugins/opendata
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/build.xml

    r31004 r31008  
    66    <property name="plugin.description" value="Convert data from Open Data portals to OSM layer"/>
    77    <property name="plugin.icon" value="images/dialogs/o24.png"/>
    8     <property name="plugin.canloadatruntime" value="true"/>
     8    <property name="plugin.canloadatruntime" value="false"/>
    99    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpenData"/>
    1010    <property name="plugin.requires" value="jts;geotools;utilsplugin2"/>
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java

    r31006 r31008  
    305305        try {
    306306            ReadLocalModuleInformationTask task = new ReadLocalModuleInformationTask(monitor);
    307             Future<?> future = Main.worker.submit(task);
     307            ExecutorService service = Executors.newSingleThreadExecutor();
     308            Future<?> future = service.submit(task);
    308309            try {
    309310                future.get();
Note: See TracChangeset for help on using the changeset viewer.