Ignore:
Timestamp:
2013-10-07T20:18:17+02:00 (11 years ago)
Author:
Don-vip
Message:

Sonar/FindBugs - Loose coupling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r6069 r6316  
    196196            new HashMap<OsmPrimitive, List<TagCorrection>>();
    197197
    198         ArrayList<TagCorrection> tagCorrections = new ArrayList<TagCorrection>();
     198        List<TagCorrection> tagCorrections = new ArrayList<TagCorrection>();
    199199        for (String key : way.keySet()) {
    200200            String value = way.get(key);
     
    221221        Map<OsmPrimitive, List<RoleCorrection>> roleCorrectionMap =
    222222            new HashMap<OsmPrimitive, List<RoleCorrection>>();
    223         ArrayList<RoleCorrection> roleCorrections = new ArrayList<RoleCorrection>();
     223        List<RoleCorrection> roleCorrections = new ArrayList<RoleCorrection>();
    224224
    225225        Collection<OsmPrimitive> referrers = oldway.getReferrers();
Note: See TracChangeset for help on using the changeset viewer.