Changeset 8180 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2015-04-09T21:25:17+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java
r7005 r8180 123 123 newValue = OsmUtils.reverseval; 124 124 } 125 for (StringSwitcher prefixSuffixSwitcher : stringSwitchers) { 126 newKey = prefixSuffixSwitcher.apply(key); 127 if (!key.equals(newKey)) { 128 break; 129 } 130 } 125 131 } else if (key.startsWith("incline") || key.endsWith("incline") 126 132 || key.startsWith("direction") || key.endsWith("direction")) { … … 132 138 // Change key but not left/right value (fix #8518) 133 139 newKey = FORWARD_BACKWARD.apply(key); 134 135 140 } else if (!ignoreKeyForCorrection(key)) { 136 141 for (StringSwitcher prefixSuffixSwitcher : stringSwitchers) {
Note:
See TracChangeset
for help on using the changeset viewer.