return Status.CANCEL_STATUS;
// and then remove any phantom edges
monitor.subTask("Removing phantom edges");
RemovePhantomEdgesAction phantoms = new RemovePhantomEdgesAction();
IStatus status = phantoms.doRemovePhantomEdges(root, handler, new SubProgressMonitor(monitor, 5));
if (!status.isOK()) {
return status;
}
if (monitor.isCanceled())
return Status.CANCEL_STATUS;