Changeset 9604 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java
r8855 r9604 41 41 if (n.isUsable() && !n.isTagged() && n.getReferrers().isEmpty()) { 42 42 43 if (!n.hasKeys()) { 43 if (!n.hasKeys() && !IN_DOWNLOADED_AREA.evaluate(n)) { 44 44 String msg = marktr("No tags"); 45 45 errors.add(new TestError(this, Severity.WARNING, ERROR_MESSAGE, tr(msg), msg, UNTAGGED_NODE_BLANK, n));
Note:
See TracChangeset
for help on using the changeset viewer.