Ignore:
Timestamp:
2020-03-14T13:26:33+01:00 (4 years ago)
Author:
Don-vip
Message:

fix #18928 - fix various crashes with empty ways

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/SelectionManager.java

    r13434 r16119  
    391391            // ways
    392392            for (Way w : ds.getWays()) {
    393                 if (!w.isSelectable() || w.getNodesCount() == 0) {
     393                if (!w.isSelectable() || w.isEmpty()) {
    394394                    continue;
    395395                }
Note: See TracChangeset for help on using the changeset viewer.