Index: trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java	(revision 13245)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java	(revision 13246)
@@ -332,8 +332,4 @@
     }
 
-    private static String fixLow(String s) {
-        return s.replaceAll("[\\x00-\\x1F]", "");
-    }
-
     private static Set<String> getPresetValues(String key) {
         Set<String> res = TaggingPresets.getPresetValues(key);
@@ -441,5 +437,4 @@
                         .message(tr("Tag value contains character with code less than 0x20"), s, key)
                         .primitives(p)
-                        .fix(() -> new ChangePropertyCommand(p, key, fixLow(value)))
                         .build());
                 withErrors.put(p, "ICV");
@@ -449,5 +444,4 @@
                         .message(tr("Tag key contains character with code less than 0x20"), s, key)
                         .primitives(p)
-                        .fix(() -> new ChangePropertyKeyCommand(p, key, fixLow(key)))
                         .build());
                 withErrors.put(p, "ICK");
