Ignore:
Timestamp:
2015-05-07T01:27:41+02:00 (9 years ago)
Author:
Don-vip
Message:

fix squid:S1319 - Declarations should use Java collection interfaces rather than specific implementation classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/downloadtasks/PostDownloadHandler.java

    r7005 r8338  
    88import java.util.LinkedHashSet;
    99import java.util.List;
     10import java.util.Set;
    1011import java.util.concurrent.Future;
    1112
     
    7778        // make sure errors are reported only once
    7879        //
    79         LinkedHashSet<Object> errors = new LinkedHashSet<>();
     80        Set<Object> errors = new LinkedHashSet<>();
    8081        errors.addAll(task.getErrorObjects());
    8182        if (errors.isEmpty())
Note: See TracChangeset for help on using the changeset viewer.