Ignore:
Timestamp:
2014-01-15T23:44:24+01:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] update to JOSM 6690

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

Legend:

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

    r29854 r30203  
    44    <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="6162"/>
     6    <property name="plugin.main.version" value="6690"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r29819 r30203  
    335335                ImageryInfo info = ((ImageryLayer)layer).getInfo();
    336336                String url = info.getUrl();
    337                 String itype = info.getImageryType().getUrlString();
     337                String itype = info.getImageryType().getTypeString();
    338338                loadParameter((url.equals("") ? itype : url), true);
    339339                action = new DummyAction(currentMapFrame, this);
     
    484484        // redirect child process's stderr to JOSM stderr
    485485        new Thread(new Runnable() {
     486            @Override
    486487            public void run() {
    487488                try {
     
    502503        // Write stdin stream
    503504        Thread osmWriteThread = new Thread(new Runnable() {
     505            @Override
    504506            public void run() {
    505507                BBox bbox = null;
     
    571573        final CommandLine that = this;
    572574        Thread osmParseThread = new Thread(new Runnable() {
     575            @Override
    573576            public void run() {
    574577                try {
Note: See TracChangeset for help on using the changeset viewer.