From 975eb6fdba4fe8683e85a7297f649d1502c933bf Mon Sep 17 00:00:00 2001 From: lresende Date: Fri, 12 Jun 2009 06:45:57 +0000 Subject: 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 --- .../java/org/apache/tuscany/sca/node/NodeFactory.java | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'java') 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. -- cgit v1.2.3