Changeset 7295 in josm
- Timestamp:
- 2014-07-07T23:13:45+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/relations/Multipolygon.java
r7005 r7295 411 411 } 412 412 413 public static Collection<JoinedWay> joinWays(Collection<Way> waysToJoin) 414 { 413 public static Collection<JoinedWay> joinWays(Collection<Way> waysToJoin) { 415 414 final Collection<JoinedWay> result = new ArrayList<>(); 416 415 final Way[] joinArray = waysToJoin.toArray(new Way[waysToJoin.size()]); … … 427 426 if (joinArray[i] != null) { 428 427 Way c = joinArray[i]; 428 if (c.getNodesCount() == 0) { 429 continue; 430 } 429 431 if (w == null) { 430 432 w = c;
Note:
See TracChangeset
for help on using the changeset viewer.