Changeset 5326 in josm for trunk/src/org/openstreetmap/josm/data
- Timestamp:
- 2012-07-12T08:45:22+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Node.java
r5249 r5326 178 178 void setDataset(DataSet dataSet) { 179 179 super.setDataset(dataSet); 180 if (!isIncomplete() && (getCoor() == null || getEastNorth() == null))180 if (!isIncomplete() && isVisible() && (getCoor() == null || getEastNorth() == null)) 181 181 throw new DataIntegrityProblemException("Complete node with null coordinates: " + toString() + get3892DebugInfo()); 182 182 }
Note:
See TracChangeset
for help on using the changeset viewer.