1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +02:00

[162994] should not try refreshing cancelled copy/move

This commit is contained in:
David McKnight 2006-11-23 22:08:47 +00:00
parent 29a42ceef1
commit 7879959bac

View file

@ -328,7 +328,8 @@ public abstract class SystemBaseCopyAction extends SystemBaseDialogAction
runException = new java.lang.reflect.InvocationTargetException(exc);
throw (java.lang.reflect.InvocationTargetException)runException;
}
copyComplete();
if (copiedOk)
copyComplete();
}
protected abstract String checkForCollision(Shell shell, IProgressMonitor monitor, Object targetContainer, Object oldObject, String oldName);