Ignore:
Timestamp:
2020-07-06T17:18:06+02:00 (4 years ago)
Author:
simon04
Message:

fix #19485 - UnsupportedOperationException in CombineWayAction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java

    r16628 r16732  
    131131
    132132        // try to build a new way which includes all the combined ways
    133         List<Node> path = tryJoin(ways);
     133        List<Node> path = new LinkedList<>(tryJoin(ways));
    134134        if (path.isEmpty()) {
    135135            warnCombiningImpossible();
Note: See TracChangeset for help on using the changeset viewer.