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/DownloadParentsAction.java

    r33530 r36102  
    3030 */
    3131public class DownloadParentsAction extends AbstractAction implements ChosenRelationListener {
    32     private ChosenRelation rel;
     32    private final ChosenRelation rel;
    3333
    3434    public DownloadParentsAction(ChosenRelation rel) {
     
    6666    protected void downloadIncomplete(Relation rel) {
    6767        if (rel.isNew()) return;
    68         Set<OsmPrimitive> ret = new HashSet<>();
    69         ret.addAll(rel.getIncompleteMembers());
     68        Set<OsmPrimitive> ret = new HashSet<>(rel.getIncompleteMembers());
    7069        if (ret.isEmpty()) return;
    7170        MainApplication.worker.submit(
Note: See TracChangeset for help on using the changeset viewer.