Changeset 3385 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2010-07-25T16:00:01+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r3210 r3385 41 41 * confirm these changes. 42 42 */ 43 43 44 44 public abstract class TagCorrector<P extends OsmPrimitive> { 45 45 … … 76 76 p.add(label2, GBC.eop().anchor(GBC.CENTER)); 77 77 78 for ( OsmPrimitive primitive : tagCorrectionsMap.keySet()) {79 final List<TagCorrection> tagCorrections = tagCorrectionsMap80 .get(primitive);78 for (Entry<OsmPrimitive, List<TagCorrection>> entry : tagCorrectionsMap.entrySet()) { 79 final OsmPrimitive primitive = entry.getKey(); 80 final List<TagCorrection> tagCorrections = entry.getValue(); 81 81 82 82 if (tagCorrections.isEmpty()) { … … 102 102 } 103 103 104 for (OsmPrimitive primitive : roleCorrectionMap.keySet()) { 105 final List<RoleCorrection> roleCorrections = roleCorrectionMap 106 .get(primitive); 104 for (Entry<OsmPrimitive, List<RoleCorrection>> entry : roleCorrectionMap.entrySet()) { 105 final OsmPrimitive primitive = entry.getKey(); 106 final List<RoleCorrection> roleCorrections = entry.getValue(); 107 107 108 if (roleCorrections.isEmpty()) { 108 109 continue;
Note:
See TracChangeset
for help on using the changeset viewer.