Changeset 36102 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/DownloadChosenRelationAction.java
- Timestamp:
- 2023-07-24T15:55:23+02:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/DownloadChosenRelationAction.java
r33530 r36102 28 28 */ 29 29 public class DownloadChosenRelationAction extends AbstractAction implements ChosenRelationListener { 30 private ChosenRelation rel; 30 private final ChosenRelation rel; 31 31 32 32 public DownloadChosenRelationAction(ChosenRelation rel) { … … 74 74 protected void downloadIncomplete(Relation rel) { 75 75 if (rel.isNew()) return; 76 Set<OsmPrimitive> ret = new HashSet<>(); 77 ret.addAll(rel.getIncompleteMembers()); 76 Set<OsmPrimitive> ret = new HashSet<>(rel.getIncompleteMembers()); 78 77 if (ret.isEmpty()) return; 79 78 MainApplication.worker.submit(
Note:
See TracChangeset
for help on using the changeset viewer.
