Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-01-08 23:56:50 +0000
committerslewis2005-01-08 23:56:50 +0000
commit11353db9e45f5238395a3dd98e816f420fe0c04f (patch)
tree727a0d6126cb5aaea5910c746676c3d2e5611aa4
parente9acef5479a5c616faafcde9da48d090ae33bdd8 (diff)
downloadorg.eclipse.ecf-11353db9e45f5238395a3dd98e816f420fe0c04f.tar.gz
org.eclipse.ecf-11353db9e45f5238395a3dd98e816f420fe0c04f.tar.xz
org.eclipse.ecf-11353db9e45f5238395a3dd98e816f420fe0c04f.zip
Removed some superfluous tracing code
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java2
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/comm/ConnectionFactory.java6
2 files changed, 1 insertions, 7 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
index 44a70293e..ee1105084 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
@@ -62,7 +62,6 @@ public class SharedObjectContainerFactory {
* @return List of SharedObjectContainerDescription instances
*/
public final static List getDescriptions() {
- debug("getDescriptions()");
return getDescriptions0();
}
private static void debug(String msg) {
@@ -96,7 +95,6 @@ public class SharedObjectContainerFactory {
*/
public final static boolean containsDescription(
SharedObjectContainerDescription scd) {
- debug("containsDescription("+scd+")");
return containsDescription0(scd);
}
protected static boolean containsDescription0(
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/comm/ConnectionFactory.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/comm/ConnectionFactory.java
index 8296f4c79..1f5e1821d 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/comm/ConnectionFactory.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/comm/ConnectionFactory.java
@@ -33,7 +33,6 @@ public class ConnectionFactory {
}
public final static boolean containsDescription(ConnectionDescription scd) {
- debug("containsDescription(" + scd + ")");
return containsDescription0(scd);
}
@@ -57,7 +56,6 @@ public class ConnectionFactory {
public final static ConnectionDescription getDescription(
ConnectionDescription scd) {
- debug("getDescription(" + scd + ")");
return getDescription0(scd);
}
@@ -75,12 +73,10 @@ public class ConnectionFactory {
}
public final static ConnectionDescription getDescriptionByName(String name) {
- debug("getDescriptionByName(" + name + ")");
return getDescription0(name);
}
public static final List getDescriptions() {
- debug("getDescriptions()");
return getDescriptions0();
}
@@ -94,7 +90,7 @@ public class ConnectionFactory {
throws ConnectionInstantiationException {
if (handler == null)
throw new ConnectionInstantiationException(
- "ISynchAsynchConnectionEventHandler cannot be null");
+ "handler cannot be null");
return makeSynchAsynchConnection(handler, desc, null, args);
}

Back to the top