Changeset 15627 in josm


Ignore:
Timestamp:
2020-01-02T10:31:54+01:00 (4 years ago)
Author:
GerdP
Message:

see #18495: Handle the case that CombineWayAction.combineWaysWorker() returns null

File:
1 edited

Legend:

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

    r14429 r15627  
    13461346
    13471347        Pair<Way, Command> result = CombineWayAction.combineWaysWorker(actionWays);
    1348 
     1348        if (result == null) {
     1349            throw new JosmRuntimeException("Join areas internal error.");
     1350        }
    13491351        commitCommand(result.b);
    13501352        cmdsCount++;
Note: See TracChangeset for help on using the changeset viewer.