Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-01-08 23:51:08 +0000
committerslewis2005-01-08 23:51:08 +0000
commit21e6ca3e29555431caea09de92f719d134a0d6e2 (patch)
tree5c7884cbc4aeb1433137f475322a45ad01995dd9
parenta844cc1ec4c7cf5cf1ec5f0fc7e62e6ec0a4504d (diff)
downloadorg.eclipse.ecf-21e6ca3e29555431caea09de92f719d134a0d6e2.tar.gz
org.eclipse.ecf-21e6ca3e29555431caea09de92f719d134a0d6e2.tar.xz
org.eclipse.ecf-21e6ca3e29555431caea09de92f719d134a0d6e2.zip
Removed some superfluous tracing code
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java
index adfd49e9a..4e158f919 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java
@@ -147,7 +147,6 @@ public class ECFPlugin extends Plugin {
}
protected void setupContainerExtensionPoint(BundleContext bc) {
- debug("setupContainerExtensionPoint(" + bc + ")");
String bundleName = getDefault().getBundle().getSymbolicName();
IExtensionRegistry reg = Platform.getExtensionRegistry();
IExtensionPoint extensionPoint = reg
@@ -209,7 +208,6 @@ public class ECFPlugin extends Plugin {
}
protected void setupIdentityExtensionPoint(BundleContext context) {
- debug("setupIdentityExtensionPoint(" + context + ")");
String bundleName = getDefault().getBundle().getSymbolicName();
// Process extension points
IExtensionRegistry reg = Platform.getExtensionRegistry();
@@ -291,7 +289,6 @@ public class ECFPlugin extends Plugin {
}
protected void setupCommExtensionPoint(BundleContext bc) {
- debug("setupCommExtensionPoint(" + bc + ")");
String bundleName = getDefault().getBundle().getSymbolicName();
IExtensionRegistry reg = Platform.getExtensionRegistry();
IExtensionPoint extensionPoint = reg

Back to the top