Changeset 36102 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/DownloadParentsAction.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/DownloadParentsAction.java
r33530 r36102 30 30 */ 31 31 public class DownloadParentsAction extends AbstractAction implements ChosenRelationListener { 32 private ChosenRelation rel; 32 private final ChosenRelation rel; 33 33 34 34 public DownloadParentsAction(ChosenRelation rel) { … … 66 66 protected void downloadIncomplete(Relation rel) { 67 67 if (rel.isNew()) return; 68 Set<OsmPrimitive> ret = new HashSet<>(); 69 ret.addAll(rel.getIncompleteMembers()); 68 Set<OsmPrimitive> ret = new HashSet<>(rel.getIncompleteMembers()); 70 69 if (ret.isEmpty()) return; 71 70 MainApplication.worker.submit(
Note:
See TracChangeset
for help on using the changeset viewer.