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/upload/DiscardTagsHook.java

    r7937 r8338  
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
    6 import java.util.AbstractMap;
    76import java.util.Collection;
    87import java.util.HashMap;
    98import java.util.HashSet;
    109import java.util.List;
     10import java.util.Map;
    1111
    1212import org.openstreetmap.josm.Main;
     
    3737
    3838        if (needsChange) {
    39             AbstractMap<String, String> map = new HashMap<>();
     39            Map<String, String> map = new HashMap<>();
    4040            for (String key : discardableKeys) {
    4141                map.put(key, null);
Note: See TracChangeset for help on using the changeset viewer.