diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-12 06:45:57 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-12 06:45:57 +0000 |
commit | 975eb6fdba4fe8683e85a7297f649d1502c933bf (patch) | |
tree | 23525341d54d214b00d65200e28be569bf6de93f | |
parent | 7f74748567b273f5537b7ed3d29055281519a7ad (diff) |
Removing @deprecated methods that are not being referenced in any 2.x code
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@784006 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/sca/modules/node-api/src/main/java/org/apache/tuscany/sca/node/NodeFactory.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/java/sca/modules/node-api/src/main/java/org/apache/tuscany/sca/node/NodeFactory.java b/java/sca/modules/node-api/src/main/java/org/apache/tuscany/sca/node/NodeFactory.java index a4b3c6e84d..23efdf729a 100644 --- a/java/sca/modules/node-api/src/main/java/org/apache/tuscany/sca/node/NodeFactory.java +++ b/java/sca/modules/node-api/src/main/java/org/apache/tuscany/sca/node/NodeFactory.java @@ -323,25 +323,6 @@ public abstract class NodeFactory extends DefaultNodeConfigurationFactory { return createNode(configuration); } - /** - * Creates a new SCA node. - * - * @param compositeURI the URI of the composite to use - * @param compositeContent the XML content of the composite to use - * @param contributions the URI of the contributions that provides the composites and related artifacts - * @return a new SCA node. - * - * @deprecated Please use createNode(InputStream compositeContent, Contribution... contributions) or - * createNode(Reader compositeContent, Contribution... contributions) - */ - @Deprecated - public Node createNode(String compositeURI, String compositeContent, Contribution... contributions) { - NodeConfiguration configuration = createConfiguration(contributions); - if (compositeContent != null && configuration.getContributions().size() > 0) { - configuration.getContributions().get(0).addDeploymentComposite(compositeContent); - } - return createNode(configuration); - } /** * Creates a new SCA node. |