Changeset 17380 in osm for applications/editors/josm/plugins/routes/src/org/openstreetmap
- Timestamp:
- 2009-08-30T18:20:37+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/ConvertedWay.java
r16428 r17380 48 48 public ConvertedWay(BitSet routes, Way way) { 49 49 this.routes = routes; 50 nodes.addAll(way. nodes);50 nodes.addAll(way.getNodes()); 51 51 } 52 52 -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/PathBuilder.java
r16428 r17380 18 18 public void addWay(Way way, RouteDefinition route) { 19 19 20 if (way. nodes.size() >= 2) {20 if (way.getNodesCount() >= 2) { 21 21 BitSet routes = wayRoutes.get(way); 22 22 if (routes == null) {
Note:
See TracChangeset
for help on using the changeset viewer.