- Timestamp:
- 2011-12-30T23:40:55+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/GpxImporter.java
r4710 r4755 42 42 loadLayers(is, file, fileName, tr("Markers from {0}", fileName), progressMonitor); 43 43 44 final GpxLayer gpxLayer = this.gpxLayer; 45 final MarkerLayer markerLayer = this.markerLayer; 46 final Runnable postLayerTask = this.postLayerTask; 47 44 48 // FIXME: remove UI stuff from the IO subsystem 45 49 GuiHelper.runInEDT(new Runnable() { -
trunk/src/org/openstreetmap/josm/io/OsmImporter.java
r4695 r4755 47 47 protected void importData(InputStream in, final File associatedFile) throws IllegalDataException { 48 48 loadLayer(in, associatedFile, associatedFile == null ? OsmDataLayer.createNewName() : associatedFile.getName(), NullProgressMonitor.INSTANCE); 49 50 final OsmDataLayer layer = this.layer; 51 final Runnable postLayerTask = this.postLayerTask; 52 49 53 // FIXME: remove UI stuff from IO subsystem 50 54 GuiHelper.runInEDT(new Runnable() {
Note:
See TracChangeset
for help on using the changeset viewer.