Changeset 33445 in osm for applications
- Timestamp:
- 2017-07-14T17:30:34+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/data/PTStop.java
r33440 r33445 155 155 if (platformBBox.bounds(currentNode.getBBox()) 156 156 && currentNode.hasTag("public_transport", "stop_position") 157 && ( (platName == null || nodeName == null)158 || platName.equals(nodeName))) {159 157 && (platName != null && nodeName != null) 158 && platName.equals(nodeName)) { 159 potentialStopPositions.add(currentNode); 160 160 } 161 161 }
Note:
See TracChangeset
for help on using the changeset viewer.