Index: /trunk/src/org/openstreetmap/josm/data/validation/routines/AbstractValidator.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/data/validation/routines/AbstractValidator.java	(revision 9854)
+++ /trunk/src/org/openstreetmap/josm/data/validation/routines/AbstractValidator.java	(revision 9855)
@@ -9,5 +9,4 @@
 
     private String errorMessage;
-    private String fix;
 
     /**
@@ -33,19 +32,3 @@
         this.errorMessage = errorMessage;
     }
-
-    /**
-     * Replies the fixed value, if any.
-     * @return the fixed value or {@code null}
-     */
-    public final String getFix() {
-        return fix;
-    }
-
-    /**
-     * Sets the fixed value.
-     * @param fix the fixed value, if any
-     */
-    protected final void setFix(String fix) {
-        this.fix = fix;
-    }
 }
Index: /trunk/src/org/openstreetmap/josm/data/validation/tests/InternetTags.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/data/validation/tests/InternetTags.java	(revision 9854)
+++ /trunk/src/org/openstreetmap/josm/data/validation/tests/InternetTags.java	(revision 9855)
@@ -7,10 +7,8 @@
 import java.util.regex.Pattern;
 
-import org.openstreetmap.josm.command.ChangePropertyCommand;
 import org.openstreetmap.josm.data.osm.Node;
 import org.openstreetmap.josm.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.data.osm.Relation;
 import org.openstreetmap.josm.data.osm.Way;
-import org.openstreetmap.josm.data.validation.FixableTestError;
 import org.openstreetmap.josm.data.validation.Severity;
 import org.openstreetmap.josm.data.validation.Test;
@@ -137,11 +135,5 @@
             }
             String msg = tr("''{0}'': {1}", k, errMsg);
-            String fix = validator.getFix();
-            if (fix != null) {
-                error = new FixableTestError(this, Severity.WARNING, msg, code, p,
-                        new ChangePropertyCommand(p, k, fix));
-            } else {
-                error = new TestError(this, Severity.WARNING, msg, code, p);
-            }
+            error = new TestError(this, Severity.WARNING, msg, code, p);
         }
         return error;
