Ignore:
Timestamp:
2023-07-24T15:55:23+02:00 (2 years ago)
Author:
taylor.smock
Message:

reltoolbox: Clean up a bunch of lint warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/DownloadChosenRelationAction.java

    r33530 r36102  
    2828 */
    2929public class DownloadChosenRelationAction extends AbstractAction implements ChosenRelationListener {
    30     private ChosenRelation rel;
     30    private final ChosenRelation rel;
    3131
    3232    public DownloadChosenRelationAction(ChosenRelation rel) {
     
    7474    protected void downloadIncomplete(Relation rel) {
    7575        if (rel.isNew()) return;
    76         Set<OsmPrimitive> ret = new HashSet<>();
    77         ret.addAll(rel.getIncompleteMembers());
     76        Set<OsmPrimitive> ret = new HashSet<>(rel.getIncompleteMembers());
    7877        if (ret.isEmpty()) return;
    7978        MainApplication.worker.submit(
Note: See TracChangeset for help on using the changeset viewer.