Changeset 11998 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2017-04-25T00:38:04+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java
r11989 r11998 238 238 if (name == null) { 239 239 return true; 240 } 241 else if (possibleMatchError != null) { 240 } else if (possibleMatchError != null) { 242 241 // if any error found, then assume that member type was correct 243 242 // and complain about not matching the memberExpression … … 282 281 checkRoleCounts(n, r, keyname, map.get(r.key)); 283 282 } 284 if ("network".equals(n.get("type")) && !"bicycle".equals(n.get("route"))) {283 if ("network".equals(n.get("type")) && !"bicycle".equals(n.get("route"))) { 285 284 return; 286 285 } … … 294 293 } 295 294 } 296 295 297 296 if (!found) { 298 297 String templates = allroles.stream().map(r -> r.key).collect(Collectors.joining("/"));
Note:
See TracChangeset
for help on using the changeset viewer.