From 60b57814f0ad0bbb3293cf81d07b7fb547406b41 Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 12 May 2011 13:19:17 +0000 Subject: Remove the allNodes static as its not used by anything git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1102283 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/org/apache/tuscany/sca/impl/NodeImpl.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/sca-java-2.x/trunk/modules/domain-node/src/main/java/org/apache/tuscany/sca/impl/NodeImpl.java b/sca-java-2.x/trunk/modules/domain-node/src/main/java/org/apache/tuscany/sca/impl/NodeImpl.java index d97ad336b2..41f6bc9f1a 100644 --- a/sca-java-2.x/trunk/modules/domain-node/src/main/java/org/apache/tuscany/sca/impl/NodeImpl.java +++ b/sca-java-2.x/trunk/modules/domain-node/src/main/java/org/apache/tuscany/sca/impl/NodeImpl.java @@ -87,8 +87,6 @@ public class NodeImpl implements Node { private TuscanyRuntime tuscanyRuntime; private Map locallyInstalledContributions = new HashMap(); - private static Map allNodes = new HashMap(); - public NodeImpl(String domainName, Deployer deployer, CompositeActivator compositeActivator, EndpointRegistry endpointRegistry, ExtensionPointRegistry extensionPointRegistry, TuscanyRuntime tuscanyRuntime) { this.domainName = domainName; this.deployer = deployer; @@ -96,7 +94,6 @@ public class NodeImpl implements Node { this.endpointRegistry = endpointRegistry; this.extensionPointRegistry = extensionPointRegistry; this.tuscanyRuntime = tuscanyRuntime; - allNodes.put(domainName, this); } public String installContribution(String contributionURL) throws ContributionReadException, ActivationException, ValidationException { @@ -325,7 +322,6 @@ public class NodeImpl implements Node { if (tuscanyRuntime != null) { tuscanyRuntime.stop(); } - allNodes.remove(this.domainName); } public T getService(Class interfaze, String serviceURI) throws NoSuchServiceException { @@ -494,7 +490,7 @@ public class NodeImpl implements Node { protected void startComposite(Composite c, InstalledContribution ic) throws ActivationException, ValidationException { List dependentContributions = calculateDependentContributions(ic); - DeployedComposite dc = new DeployedComposite(c, ic, dependentContributions, deployer, compositeActivator, endpointRegistry, extensionPointRegistry); + DeployedComposite dc = new DeployedComposite(c, ic.getContribution(), dependentContributions, deployer, compositeActivator, endpointRegistry, extensionPointRegistry); ic.start(dc); } @@ -543,8 +539,4 @@ public class NodeImpl implements Node { return endpointRegistry; } - public static Node nodeExists(String domainName) { - return allNodes.get(domainName); - } - } -- cgit v1.2.3