Index: /applications/editors/josm/plugins/validator/build.xml
===================================================================
--- /applications/editors/josm/plugins/validator/build.xml	(revision 22456)
+++ /applications/editors/josm/plugins/validator/build.xml	(revision 22457)
@@ -27,5 +27,5 @@
 	-->
 	<property name="commit.message" value="i18n fix" />
-	<property name="plugin.main.version" value="3289" />
+	<property name="plugin.main.version" value="3388" />
 
 
Index: /applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/RelationChecker.java
===================================================================
--- /applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/RelationChecker.java	(revision 22456)
+++ /applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/RelationChecker.java	(revision 22457)
@@ -9,10 +9,7 @@
 import java.util.HashMap;
 import java.util.LinkedList;
-import java.util.Map;
-
-import org.openstreetmap.josm.data.osm.Node;
+
 import org.openstreetmap.josm.data.osm.Relation;
 import org.openstreetmap.josm.data.osm.RelationMember;
-import org.openstreetmap.josm.data.osm.Way;
 import org.openstreetmap.josm.gui.preferences.TaggingPresetPreference;
 import org.openstreetmap.josm.gui.tagging.TaggingPreset;
@@ -114,5 +111,5 @@
         {
             errors.add( new TestError(this, Severity.WARNING, tr("Relation type is unknown"),
-            RELATION_UNKNOWN, n) );
+                    RELATION_UNKNOWN, n) );
 
         }
@@ -144,5 +141,5 @@
             if(map.size() == 0)
                 errors.add( new TestError(this, Severity.ERROR, tr("Relation is empty"),
-                RELATION_EMPTY, n) );
+                        RELATION_EMPTY, n) );
             else
             {
@@ -163,5 +160,5 @@
                             String s = marktr("Role {0} missing");
                             errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                            tr(s, keyname), MessageFormat.format(s, keyname), ROLE_MISSING, n) );
+                                    tr(s, keyname), MessageFormat.format(s, keyname), ROLE_MISSING, n) );
                         }
                         else if(vc > count)
@@ -169,5 +166,5 @@
                             String s = marktr("Number of {0} roles too low ({1})");
                             errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                            tr(s, keyname, count), MessageFormat.format(s, keyname, count), LOW_COUNT, n) );
+                                    tr(s, keyname, count), MessageFormat.format(s, keyname, count), LOW_COUNT, n) );
                         }
                         else
@@ -175,13 +172,13 @@
                             String s = marktr("Number of {0} roles too high ({1})");
                             errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                            tr(s, keyname, count), MessageFormat.format(s, keyname, count), HIGH_COUNT, n) );
+                                    tr(s, keyname, count), MessageFormat.format(s, keyname, count), HIGH_COUNT, n) );
                         }
                     }
                     if(ri != null && ((!r.types.contains("way") && (r.types.contains("closedway") ? ri.openways > 0 : ri.ways > 0))
-                    || (!r.types.contains("node") && ri.nodes > 0) || (!r.types.contains("relation") && ri.relations > 0)))
+                            || (!r.types.contains("node") && ri.nodes > 0) || (!r.types.contains("relation") && ri.relations > 0)))
                     {
                         String s = marktr("Member for role {0} of wrong type");
                         errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                        tr(s, keyname), MessageFormat.format(s, keyname), WRONG_TYPE, n) );
+                                tr(s, keyname), MessageFormat.format(s, keyname), WRONG_TYPE, n) );
                     }
                 }
@@ -194,5 +191,5 @@
                             String s = marktr("Role {0} unknown");
                             errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                            tr(s, key), MessageFormat.format(s, key), ROLE_UNKNOWN, n) );
+                                    tr(s, key), MessageFormat.format(s, key), ROLE_UNKNOWN, n) );
                         }
                         else
@@ -200,5 +197,5 @@
                             String s = marktr("Empty role found");
                             errors.add( new TestError(this, Severity.WARNING, tr("Role verification problem"),
-                            tr(s), s, ROLE_EMPTY, n) );
+                                    tr(s), s, ROLE_EMPTY, n) );
                         }
                     }
