Ignore:
Timestamp:
2012-07-12T08:45:22+02:00 (12 years ago)
Author:
framm
Message:

handle deleted nodes without lat/lon. apply patches from ticket; closes #7847

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Node.java

    r5249 r5326  
    178178    void setDataset(DataSet dataSet) {
    179179        super.setDataset(dataSet);
    180         if (!isIncomplete() && (getCoor() == null || getEastNorth() == null))
     180        if (!isIncomplete() && isVisible() && (getCoor() == null || getEastNorth() == null))
    181181            throw new DataIntegrityProblemException("Complete node with null coordinates: " + toString() + get3892DebugInfo());
    182182    }
Note: See TracChangeset for help on using the changeset viewer.