Changeset 25826 in osm for applications/editors/josm
- Timestamp:
- 2011-04-11T16:55:26+02:00 (14 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r25179 r25826 323 323 } 324 324 ImageryInfo info = ((ImageryLayer)layer).getInfo(); 325 String url = info.getU rl();325 String url = info.getURL(); 326 326 String itype = info.getImageryType().getUrlString(); 327 327 loadParameter((url.equals("") ? itype : url), true); … … 431 431 setMode(Mode.PROCESSING); 432 432 String commandToRun = currentCommand.run; 433 final boolean tracks = currentCommand.tracks; 433 434 434 435 for (Parameter parameter : currentCommand.parameters) { … … 535 536 osmWriter.flush(); 536 537 } 537 if ( currentCommand.tracks) {538 if (tracks) { 538 539 final GpxWriter gpxWriter = new GpxWriter(printWriter); 539 540 GpxFilter gpxFilter = new GpxFilter();
Note:
See TracChangeset
for help on using the changeset viewer.