mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 09:15:38 +02:00
don't delete contents of project if error occurs
This commit is contained in:
parent
368fd2c1ed
commit
5374d486e7
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ public abstract class CProjectWizard extends BasicNewResourceWizard implements I
|
||||||
MessageDialog.openError(shell, title, message);
|
MessageDialog.openError(shell, title, message);
|
||||||
CPlugin.log(th);
|
CPlugin.log(th);
|
||||||
try {
|
try {
|
||||||
getProjectHandle().delete(true, true, null);
|
getProjectHandle().delete(false, false, null);
|
||||||
}
|
}
|
||||||
catch (CoreException ignore) {
|
catch (CoreException ignore) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue