Changeset 17702 in josm for trunk/src/org
- Timestamp:
- 2021-04-01T23:17:01+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/corrector/TagCorrector.java
r17597 r17702 158 158 int answer = dialog.getValue(); 159 159 160 if (answer == JOptionPane.YES_OPTION) {160 if (answer == 1) { 161 161 for (Entry<OsmPrimitive, List<TagCorrection>> entry : tagCorrectionsMap.entrySet()) { 162 162 OsmPrimitive primitive = entry.getKey(); … … 199 199 } 200 200 } 201 } else if (answer != JOptionPane.NO_OPTION)201 } else if (answer != 2) 202 202 throw new UserCancelException(); 203 203 return Collections.unmodifiableCollection(commands);
Note:
See TracChangeset
for help on using the changeset viewer.