Changeset 11313 in josm
- Timestamp:
- 2016-11-26T00:22:40+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/relations/Multipolygon.java
r10662 r11313 170 170 /** 171 171 * Constructs a new {@code JoinedWay}. 172 * @param nodes list of nodes 173 * @param wayIds list of way IDs 172 * @param nodes list of nodes - must not be null 173 * @param wayIds list of way IDs - must not be null 174 174 * @param selected whether joined way is selected or not 175 175 */ … … 606 606 } 607 607 608 result.add(new JoinedWay(nodes, wayIds, selected)); 608 if (nodes != null) { 609 result.add(new JoinedWay(nodes, wayIds, selected)); 610 } 609 611 } 610 612
Note: See TracChangeset
for help on using the changeset viewer.