Index: trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 17498)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 17499)
@@ -183,8 +183,7 @@
         /**
          * Creates a fixing command which executes a {@link ChangePropertyKeyCommand} on the specified keys
-         * if {@code p} does not already have {@code newKey}
          * @param oldKey old key
          * @param newKey new key
-         * @return created fix command, or {@code null}
+         * @return created fix command
          */
         static FixCommand fixChangeKey(final String oldKey, final String newKey) {
@@ -192,5 +191,5 @@
                 @Override
                 public Command createCommand(OsmPrimitive p, Selector matchingSelector) {
-                    return p.hasKey(newKey) ? null : new ChangePropertyKeyCommand(p,
+                    return new ChangePropertyKeyCommand(p,
                             TagCheck.insertArguments(matchingSelector, oldKey, p),
                             TagCheck.insertArguments(matchingSelector, newKey, p));
