Changeset 10657 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2016-07-27T02:08:34+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayNoTagCorrector.java
r9539 r10657 55 55 for (Map.Entry<String, String> entry : way.getKeys().entrySet()) { 56 56 final Tag tag = new Tag(entry.getKey(), entry.getValue()); 57 final boolean isDirectional = directionalTags.contains(tag) || OsmPrimitive.directionalKeyPredicate. evaluate(tag);57 final boolean isDirectional = directionalTags.contains(tag) || OsmPrimitive.directionalKeyPredicate.test(tag); 58 58 if (isDirectional) { 59 59 final boolean cannotBeCorrected = ReverseWayTagCorrector.getTagCorrections(tag).isEmpty();
Note:
See TracChangeset
for help on using the changeset viewer.