Index: trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 15998)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 15999)
@@ -550,5 +550,5 @@
                         .messageWithManuallyTranslatedDescription(description1, description2, matchingSelector.toString());
                 if (fix != null) {
-                    errorBuilder = errorBuilder.fix(() -> fix);
+                    errorBuilder.fix(() -> fix);
                 }
                 if (env.child instanceof OsmPrimitive) {
@@ -561,5 +561,5 @@
                                             matchingSelector.toString());
                             if (fix != null) {
-                                errorBuilder = errorBuilder.fix(() -> fix);
+                                errorBuilder.fix(() -> fix);
                             }
                             // check if we have special information about highlighted objects */
@@ -568,5 +568,5 @@
                                 Area is = env.intersections.get(c);
                                 if (is != null) {
-                                    errorBuilder = errorBuilder.highlight(is);
+                                    errorBuilder.highlight(is);
                                     hiliteFound = true;
                                 }
@@ -579,5 +579,5 @@
                                         toHilite.addAll(wsList);
                                     }
-                                    errorBuilder = errorBuilder.highlightWaySegments(toHilite);
+                                    errorBuilder.highlightWaySegments(toHilite);
                                 }
                             }
