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
This commit is contained in:
parent
7f74748567
commit
975eb6fdba
1 changed files with 0 additions and 19 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue