Index: /applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationProfile.java
===================================================================
--- /applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationProfile.java	(revision 35464)
+++ /applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationProfile.java	(revision 35465)
@@ -197,5 +197,5 @@
         importantWayPoints[WAYPOINT_START] = wp;
         if(wp.getDate() != null)
-        	this.start = wp.getDate();
+            this.start = wp.getDate();
     }
 
@@ -206,5 +206,5 @@
         importantWayPoints[WAYPOINT_END] = wp;
         if(wp.getDate() != null)
-        	this.end = wp.getDate();
+            this.end = wp.getDate();
     }
 
Index: /applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/UndeleteAction.java
===================================================================
--- /applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/UndeleteAction.java	(revision 35464)
+++ /applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/UndeleteAction.java	(revision 35465)
@@ -59,14 +59,14 @@
         private Set<OsmPrimitive> restored;
 
-		private Set<PrimitiveId> missingPrimitives;
-
-		private Worker(OsmPrimitive parent, OsmDataLayer layer, List<PrimitiveId> ids, Set<OsmPrimitive> restored,
-				HistoryLoadTask task) {
-			this.parent = parent;
-			this.layer = layer;
-			this.ids = ids;
-			this.restored = restored;
-			this.missingPrimitives = task.getMissingPrimitives();
-		}
+        private Set<PrimitiveId> missingPrimitives;
+
+        private Worker(OsmPrimitive parent, OsmDataLayer layer, List<PrimitiveId> ids, Set<OsmPrimitive> restored,
+                HistoryLoadTask task) {
+            this.parent = parent;
+            this.layer = layer;
+            this.ids = ids;
+            this.restored = restored;
+            this.missingPrimitives = task.getMissingPrimitives();
+        }
 
         @Override
@@ -74,7 +74,7 @@
             List<Node> nodes = new ArrayList<>();
             for (PrimitiveId pid : ids) {
-				if (missingPrimitives == null || missingPrimitives.contains(pid)) {
-					continue;
-				}
+                if (missingPrimitives == null || missingPrimitives.contains(pid)) {
+                    continue;
+                }
 
                 OsmPrimitive primitive = layer.data.getPrimitiveById(pid);
@@ -86,8 +86,8 @@
                         History h = HistoryDataSet.getInstance().getHistory(id, type);
 
-						if (h == null) {
-							Logging.warn("Cannot find history for " + type + " " + id);
-							return;
-						}
+                        if (h == null) {
+                            Logging.warn("Cannot find history for " + type + " " + id);
+                            return;
+                        }
 
                         HistoryOsmPrimitive hPrimitive1 = h.getLatest();
