Index: applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 28530)
+++ applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 28534)
@@ -241,5 +241,7 @@
         switch (current.getType()) {
         case NODE:
-            return new LatLon(((Node)current).getCoor()).equals(((HistoryNode)history).getCoords());
+        	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();
