Index: /applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java
===================================================================
--- /applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 28534)
+++ /applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 28535)
@@ -241,7 +241,7 @@
         switch (current.getType()) {
         case NODE:
-        	LatLon currentCoor = ((Node)current).getCoor();
-        	LatLon historyCoor = ((HistoryNode)history).getCoords();
-        	return currentCoor == historyCoor || (currentCoor != null && historyCoor != null && currentCoor.equals(historyCoor));
+            LatLon currentCoor = ((Node)current).getCoor();
+            LatLon historyCoor = ((HistoryNode)history).getCoords();
+            return currentCoor == historyCoor || (currentCoor != null && historyCoor != null && currentCoor.equals(historyCoor));
         case WAY:
             List<Node> currentNodes = ((Way)current).getNodes();
