diff options
author | slewis | 2007-04-21 04:33:13 +0000 |
---|---|---|
committer | slewis | 2007-04-21 04:33:13 +0000 |
commit | b8cb3ce11a14339046007549bce3eb0f715b4546 (patch) | |
tree | a4c91dde55f705be50204eedba13782a30c34854 | |
parent | 3bcd90770674253b567ddcca5736faf2b304d706 (diff) | |
download | org.eclipse.ecf-b8cb3ce11a14339046007549bce3eb0f715b4546.tar.gz org.eclipse.ecf-b8cb3ce11a14339046007549bce3eb0f715b4546.tar.xz org.eclipse.ecf-b8cb3ce11a14339046007549bce3eb0f715b4546.zip |
Removed unnecessary code
-rw-r--r-- | providers/bundles/org.eclipse.ecf.provider.xmpp.ui/src/org/eclipse/ecf/internal/provider/xmpp/ui/XMPPConnectWizard.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.xmpp.ui/src/org/eclipse/ecf/internal/provider/xmpp/ui/XMPPConnectWizard.java b/providers/bundles/org.eclipse.ecf.provider.xmpp.ui/src/org/eclipse/ecf/internal/provider/xmpp/ui/XMPPConnectWizard.java index bdd3246df..4824cc743 100644 --- a/providers/bundles/org.eclipse.ecf.provider.xmpp.ui/src/org/eclipse/ecf/internal/provider/xmpp/ui/XMPPConnectWizard.java +++ b/providers/bundles/org.eclipse.ecf.provider.xmpp.ui/src/org/eclipse/ecf/internal/provider/xmpp/ui/XMPPConnectWizard.java @@ -153,22 +153,6 @@ public class XMPPConnectWizard extends Wizard implements IConnectWizard { }; - private IExceptionHandler exceptionHandler = new IExceptionHandler() { - public IStatus handleException(final Throwable exception) { - if (exception != null) { - Display.getDefault().asyncExec(new Runnable() { - public void run() { - new ContainerConnectErrorDialog(shell, IStatus.ERROR, - "See Details", targetID.getName(), exception) - .open(); - } - }); - } - return new Status(IStatus.OK, Activator.PLUGIN_ID, IStatus.OK, - "Connected", null); - } - }; - public void addPages() { page = new XMPPConnectWizardPage(); addPage(page); |