Changeset 16369 in josm


Ignore:
Timestamp:
2020-04-20T18:09:05+02:00 (4 years ago)
Author:
GerdP
Message:

see #19121: JosmAction.checkAndConfirmOutlyingOperation() should also handle dataset without download area

  • add missing brackets so that possible ignore list works
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r16365 r16369  
    228228            if (osm.isIncomplete()) {
    229229                res |= IS_INCOMPLETE;
    230             } else if (osm.isOutsideDownloadArea()
    231                     || (!osm.isNew() && osm.getDataSet() != null && osm.getDataSet().getDataSourceBounds().isEmpty())
     230            } else if ((osm.isOutsideDownloadArea()
     231                    || (!osm.isNew() && osm.getDataSet() != null && osm.getDataSet().getDataSourceBounds().isEmpty()))
    232232                            && (ignore == null || !ignore.contains(osm))) {
    233233                res |= IS_OUTSIDE;
Note: See TracChangeset for help on using the changeset viewer.