Changeset 33484 in osm
- Timestamp:
- 2017-07-30T11:02:53+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/RouteChecker.java
r33475 r33484 103 103 protected boolean performFromToTagsTest() { 104 104 105 String from = relation.get("from") .toLowerCase();106 String to = relation.get("to") .toLowerCase();105 String from = relation.get("from"); 106 String to = relation.get("to"); 107 107 if (from == null || to == null || manager.getPTStopCount() == 0) { 108 108 return false; 109 109 } 110 111 from = from.toLowerCase(); 112 to = to.toLowerCase(); 110 113 111 114 boolean foundError = false;
Note:
See TracChangeset
for help on using the changeset viewer.