Changeset 34423 in osm for applications/editors/josm/plugins/pdfimport/src
- Timestamp:
- 2018-07-13T17:36:50+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java
r34422 r34423 430 430 431 431 if (!placement.isValid()) return; 432 433 Logging.debug("PdfImport: Import"); 434 this.removeLayer(); 435 436 this.runAsBackgroundTask(new Runnable() { 432 try { 433 placement.save(pdfFile); 434 } catch (IOException e) { 435 e.toString(); 436 } 437 removeLayer(); 438 439 runAsBackgroundTask(new Runnable() { 437 440 @Override 438 441 public void run() {
Note:
See TracChangeset
for help on using the changeset viewer.