Index: applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/ExtractPointAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/ExtractPointAction.java	(revision 35613)
+++ applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/ExtractPointAction.java	(revision 35615)
@@ -54,4 +54,17 @@
             return;
         }
+        final boolean ok = checkAndConfirmOutlyingOperation("extnode",
+                tr("Extract node confirmation"),
+                tr("You are about to extract a node which can have other referrers not yet downloaded."
+                        + "<br>"
+                        + "This can cause problems because other objects (that you do not see) might use them."
+                        + "<br>"
+                        + "Do you really want to extract?"),
+                "", // incomplete node should not happen
+                selectedNodes, null);
+        if (!ok) {
+            return;
+        }
+
         Node nd = selectedNodes.iterator().next();
         Node ndCopy = new Node(nd.getCoor());
