- Timestamp:
- 2018-06-10T23:15:09+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/BBox.java
r13140 r13910 98 98 * @param w the way 99 99 */ 100 public BBox( Wayw) {100 public BBox(IWay<?> w) { 101 101 w.getNodes().forEach(this::add); 102 102 } … … 106 106 * @param n the node 107 107 */ 108 public BBox(Node n) { 108 public BBox(INode n) { 109 109 this((ILatLon) n); 110 110 }
Note:
See TracChangeset
for help on using the changeset viewer.