Changeset 11645 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-03-01T23:28:34+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SessionLoadAction.java
r10601 r11645 138 138 139 139 private void runPostLoadTasks() { 140 for (Runnable task : postLoadTasks) { 141 if (canceled) 142 return; 143 if (task == null) { 144 continue; 140 if (postLoadTasks != null) { 141 for (Runnable task : postLoadTasks) { 142 if (canceled) 143 return; 144 if (task == null) { 145 continue; 146 } 147 task.run(); 145 148 } 146 task.run();147 149 } 148 150 } -
trunk/src/org/openstreetmap/josm/io/session/SessionReader.java
r11620 r11645 256 256 } else 257 257 throw new IOException(tr("Unsupported scheme ''{0}'' in URI ''{1}''.", uri.getScheme(), uriStr)); 258 } catch (URISyntaxException e) { 258 } catch (URISyntaxException | IllegalArgumentException e) { 259 259 throw new IOException(e); 260 260 }
Note:
See TracChangeset
for help on using the changeset viewer.