Changeset 3950 in josm
- Timestamp:
- 2011-03-04T11:44:28+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java
r3671 r3950 60 60 if (!n.hasKeys()) { 61 61 String msg = marktr("No tags"); 62 errors.add(new TestError(this, Severity. OTHER, tr("Unconnected nodes without physical tags"), tr(msg), msg, UNTAGGED_NODE_BLANK, n));62 errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"), tr(msg), msg, UNTAGGED_NODE_BLANK, n)); 63 63 return; 64 64 } … … 68 68 /* translation note: don't translate quoted words */ 69 69 String msg = marktr("Has tag containing ''fixme'' or ''FIXME''"); 70 errors.add(new TestError(this, Severity. OTHER, tr("Unconnected nodes without physical tags"),70 errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"), 71 71 tr(msg), msg, UNTAGGED_NODE_FIXME, n)); 72 72 return; … … 93 93 } 94 94 if (msg != null) { 95 errors.add(new TestError(this, Severity. OTHER, tr("Unconnected nodes without physical tags"),95 errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"), 96 96 tr(msg), msg, code, n)); 97 97 return; … … 99 99 } 100 100 // Does not happen, but just to be sure. Maybe definition of uninteresting tags changes in future. 101 errors.add(new TestError(this, Severity. OTHER, tr("Unconnected nodes without physical tags"),101 errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"), 102 102 tr("Other"), "Other", UNTAGGED_NODE_OTHER, n)); 103 103 }
Note:
See TracChangeset
for help on using the changeset viewer.