mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Fix warnings.
This commit is contained in:
parent
edc5df6d66
commit
17a0f1c360
1 changed files with 2 additions and 3 deletions
|
@ -44,7 +44,6 @@ import org.eclipse.swt.widgets.Table;
|
|||
import org.eclipse.swt.widgets.Text;
|
||||
import org.eclipse.ui.dialogs.WizardDataTransferPage;
|
||||
|
||||
import org.eclipse.cdt.core.CCorePlugin;
|
||||
import org.eclipse.cdt.core.model.CModelException;
|
||||
import org.eclipse.cdt.core.model.CoreModel;
|
||||
import org.eclipse.cdt.core.model.ICProject;
|
||||
|
@ -323,8 +322,8 @@ public class TeamProjectIndexExportWizardPage extends WizardDataTransferPage {
|
|||
} catch (InterruptedException e) {
|
||||
return false;
|
||||
} catch (InvocationTargetException e) {
|
||||
CUIPlugin.log(CCorePlugin.createStatus(Messages.TeamProjectIndexExportWizardPage_errorExporting,
|
||||
e.getTargetException()));
|
||||
CUIPlugin.log(Messages.TeamProjectIndexExportWizardPage_errorExporting,
|
||||
e.getTargetException());
|
||||
displayErrorDialog(e.getTargetException());
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue