Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-01-08 23:54:15 +0000
committerslewis2005-01-08 23:54:15 +0000
commite9acef5479a5c616faafcde9da48d090ae33bdd8 (patch)
treea59dff69cb728bf5d91c2496acadc176adbfc05f
parent21e6ca3e29555431caea09de92f719d134a0d6e2 (diff)
downloadorg.eclipse.ecf-e9acef5479a5c616faafcde9da48d090ae33bdd8.tar.gz
org.eclipse.ecf-e9acef5479a5c616faafcde9da48d090ae33bdd8.tar.xz
org.eclipse.ecf-e9acef5479a5c616faafcde9da48d090ae33bdd8.zip
*** empty log message ***
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/core/ECFPlugin.java5
1 files changed, 1 insertions, 4 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 4e158f919..6ec5b80a9 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
@@ -79,7 +79,7 @@ public class ECFPlugin extends Plugin {
public ECFPlugin() {
super();
- debug("<init>");
+ debug("ECFPlugin.<init>");
plugin = this;
try {
resourceBundle = ResourceBundle.getBundle(PLUGIN_RESOURCE_BUNDLE);
@@ -158,7 +158,6 @@ public class ECFPlugin extends Plugin {
.getConfigurationElements();
// For each configuration element
for (int m = 0; m < members.length; m++) {
- debug("setupContainerExtensionPoint:" + members[m].getName());
IConfigurationElement member = members[m];
// Get the label of the extender plugin and the ID of the extension.
IExtension extension = member.getDeclaringExtension();
@@ -220,7 +219,6 @@ public class ECFPlugin extends Plugin {
.getConfigurationElements();
// For each service:
for (int m = 0; m < members.length; m++) {
- debug("setupIdentityExtensionPoint:" + members[m].getName());
IConfigurationElement member = members[m];
// Get the label of the extender plugin and the ID of the
// extension.
@@ -300,7 +298,6 @@ public class ECFPlugin extends Plugin {
.getConfigurationElements();
// For each configuration element
for (int m = 0; m < members.length; m++) {
- debug("setupCommExtensionPoint:" + members[m].getName());
IConfigurationElement member = members[m];
// Get the label of the extender plugin and the ID of the extension.
IExtension extension = member.getDeclaringExtension();

Back to the top