1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fix warnings.

This commit is contained in:
Markus Schorn 2009-02-16 09:40:45 +00:00
parent edc5df6d66
commit 17a0f1c360

View file

@ -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;
}