Index: trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java	(revision 3949)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java	(revision 3950)
@@ -60,5 +60,5 @@
             if (!n.hasKeys()) {
                 String msg = marktr("No tags");
-                errors.add(new TestError(this, Severity.OTHER, tr("Unconnected nodes without physical tags"), tr(msg), msg, UNTAGGED_NODE_BLANK, n));
+                errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"), tr(msg), msg, UNTAGGED_NODE_BLANK, n));
                 return;
             }
@@ -68,5 +68,5 @@
                     /* translation note: don't translate quoted words */
                     String msg = marktr("Has tag containing ''fixme'' or ''FIXME''");
-                    errors.add(new TestError(this, Severity.OTHER, tr("Unconnected nodes without physical tags"),
+                    errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"),
                                 tr(msg), msg, UNTAGGED_NODE_FIXME, n));
                     return;
@@ -93,5 +93,5 @@
                 }
                 if (msg != null) {
-                    errors.add(new TestError(this, Severity.OTHER, tr("Unconnected nodes without physical tags"),
+                    errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"),
                                 tr(msg), msg, code, n));
                     return;
@@ -99,5 +99,5 @@
             }
             // Does not happen, but just to be sure. Maybe definition of uninteresting tags changes in future.
-            errors.add(new TestError(this, Severity.OTHER, tr("Unconnected nodes without physical tags"),
+            errors.add(new TestError(this, Severity.WARNING, tr("Unconnected nodes without physical tags"),
                         tr("Other"), "Other", UNTAGGED_NODE_OTHER, n));
         }
