Changeset 9062 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2015-11-25T01:21:14+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r8919 r9062 139 139 if (answer == JOptionPane.YES_OPTION) { 140 140 for (Entry<OsmPrimitive, List<TagCorrection>> entry : tagCorrectionsMap.entrySet()) { 141 List<TagCorrection> tagCorrections = entry.getValue();142 141 OsmPrimitive primitive = entry.getKey(); 143 142 … … 158 157 159 158 // apply all changes to this clone 159 List<TagCorrection> tagCorrections = entry.getValue(); 160 160 for (int i = 0; i < tagCorrections.size(); i++) { 161 161 if (tagTableMap.get(primitive).getCorrectionTableModel().getApply(i)) {
Note: See TracChangeset
for help on using the changeset viewer.