Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-02-03 05:04:34 +0000
committerslewis2005-02-03 05:04:34 +0000
commit1547fb612c3f07ea13942239fbba6ae9d0248380 (patch)
tree2a5666bdfa46744fda53807aca6a912ed7f657b6
parent0f5b5972fd967ae255d6430f5c181f7472be157b (diff)
downloadorg.eclipse.ecf-1547fb612c3f07ea13942239fbba6ae9d0248380.tar.gz
org.eclipse.ecf-1547fb612c3f07ea13942239fbba6ae9d0248380.tar.xz
org.eclipse.ecf-1547fb612c3f07ea13942239fbba6ae9d0248380.zip
Removed code to eliminate spurious exception
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatView.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatView.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatView.java
index e1a69f541..e777457cd 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatView.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatView.java
@@ -11,14 +11,10 @@
package org.eclipse.ecf.example.collab.ui;
-import java.net.MalformedURLException;
-import java.net.URL;
import java.util.Enumeration;
import java.util.Hashtable;
-import org.eclipse.ecf.example.collab.ClientPlugin;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IToolBarManager;
-import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
@@ -185,6 +181,7 @@ public class LineChatView extends ViewPart {
}
*/
protected void activateAction() {
+ /*
setText(ClientPlugin.getResourceString(id + ".text"));
setDescription(ClientPlugin.getResourceString(id + ".tooltip"));
setToolTipText(ClientPlugin.getResourceString(id + ".description"));
@@ -196,6 +193,7 @@ public class LineChatView extends ViewPart {
} catch (MalformedURLException e) {
ClientPlugin.log("Exception loading image for action: "+id, e);
}
+ */
}
public void run() {

Back to the top