Changeset 6316 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2013-10-07T20:18:17+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java
r6069 r6316 196 196 new HashMap<OsmPrimitive, List<TagCorrection>>(); 197 197 198 ArrayList<TagCorrection> tagCorrections = new ArrayList<TagCorrection>();198 List<TagCorrection> tagCorrections = new ArrayList<TagCorrection>(); 199 199 for (String key : way.keySet()) { 200 200 String value = way.get(key); … … 221 221 Map<OsmPrimitive, List<RoleCorrection>> roleCorrectionMap = 222 222 new HashMap<OsmPrimitive, List<RoleCorrection>>(); 223 ArrayList<RoleCorrection> roleCorrections = new ArrayList<RoleCorrection>();223 List<RoleCorrection> roleCorrections = new ArrayList<RoleCorrection>(); 224 224 225 225 Collection<OsmPrimitive> referrers = oldway.getReferrers();
Note: See TracChangeset
for help on using the changeset viewer.