Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-04-29 22:37:21 +0000
committerslewis2007-04-29 22:37:21 +0000
commitd8d21ab6305fe74475fcead9ae7f4f356880b9f7 (patch)
tree60fa5d8cc1e724440f5caf9bed92938648f72938 /providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org
parent7e6851886c4cb867e6dbb72f9c758a981570198e (diff)
downloadorg.eclipse.ecf-d8d21ab6305fe74475fcead9ae7f4f356880b9f7.tar.gz
org.eclipse.ecf-d8d21ab6305fe74475fcead9ae7f4f356880b9f7.tar.xz
org.eclipse.ecf-d8d21ab6305fe74475fcead9ae7f4f356880b9f7.zip
Refactoring of ChatRoomManagerView and dependent classes. Also added support for multiple channels to connect to upon initial connect
Diffstat (limited to 'providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org/eclipse/ecf/internal/irc/ui/wizards/IRCConnectWizard.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org/eclipse/ecf/internal/irc/ui/wizards/IRCConnectWizard.java b/providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org/eclipse/ecf/internal/irc/ui/wizards/IRCConnectWizard.java
index 060c04635..bd7fb2679 100644
--- a/providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org/eclipse/ecf/internal/irc/ui/wizards/IRCConnectWizard.java
+++ b/providers/bundles/org.eclipse.ecf.provider.irc.ui/src/org/eclipse/ecf/internal/irc/ui/wizards/IRCConnectWizard.java
@@ -93,12 +93,8 @@ public final class IRCConnectWizard extends Wizard implements IConnectWizard {
try {
URI uri = new URI(page.getConnectID());
- String auth = uri.getAuthority();
- if (auth.indexOf("@") == -1) {
- auth = guestUser + "@" + auth;
- }
targetID = IDFactory.getDefault().createID(
- container.getConnectNamespace(), auth);
+ container.getConnectNamespace(), page.getConnectID());
} catch (Exception e) {
MessageDialog.openError(shell, "Connect Error", NLS.bind(
"Invalid connect ID: {0}", page.getConnectID()));

Back to the top