Index: trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java	(revision 12208)
+++ trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java	(revision 12209)
@@ -88,5 +88,4 @@
         }
 
-        boolean propertiesUpdated = false;
         Collection<Command> c = new LinkedList<>();
         for (Way w : sel) {
@@ -99,11 +98,6 @@
             }
             c.addAll(revResult.getCommands());
-            propertiesUpdated |= !revResult.getTagCorrectionCommands().isEmpty();
         }
         Main.main.undoRedo.add(new SequenceCommand(tr("Reverse ways"), c));
-        // FIXME: This should be handled by undoRedo.
-        if (propertiesUpdated) {
-            ds.fireSelectionChanged();
-        }
     }
 
