From 17a0f1c3606ac626e8dd697a387cc77a5ac4daf6 Mon Sep 17 00:00:00 2001 From: Markus Schorn Date: Mon, 16 Feb 2009 09:40:45 +0000 Subject: [PATCH] Fix warnings. --- .../indexwizards/TeamProjectIndexExportWizardPage.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java index 66503ea64ae..ca8056d837d 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java @@ -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; }