diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-03 13:07:13 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-03 13:07:13 +0000 |
commit | 987617f3decd05f2d3c3009d466ca6884708ab52 (patch) | |
tree | 2d8cbf6525dfd57279bd69fb395227699698f640 /sca-java-2.x/trunk/modules/shell/src/main | |
parent | f059b86e0365e9411c76a5e5462890b03497b4a8 (diff) |
Fix typo in method name.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@992287 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/shell/src/main')
-rw-r--r-- | sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java index ef7ca06a1a..59e98d2c84 100644 --- a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java +++ b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java @@ -224,7 +224,7 @@ public class Shell { currentDomain = "";
}
} else {
- for (String compositeURI : getNode().getDeployedCompostes(curi)) {
+ for (String compositeURI : getNode().getDeployedComposites(curi)) {
getNode().removeFromDomainLevelComposite(curi, compositeURI);
}
}
@@ -277,7 +277,7 @@ public class Shell { for (String nodeName : standaloneNodes.keySet()) {
Node node = standaloneNodes.get(nodeName);
for (String curi : node.getInstalledContributions()) {
- for (String dc : node.getDeployedCompostes(curi)) {
+ for (String dc : node.getDeployedComposites(curi)) {
out.println(" " + nodeName + " " + dc);
}
}
@@ -297,12 +297,12 @@ public class Shell { for (String curi : ics) {
Contribution c = node.getInstalledContribution(curi);
- List<String> dcs = node.getDeployedCompostes(curi);
+ List<String> dcs = node.getDeployedComposites(curi);
if (toks.size() > 2) {
dcs = new ArrayList<String>();
dcs.add(toks.get(2));
} else {
- dcs = node.getDeployedCompostes(curi);
+ dcs = node.getDeployedComposites(curi);
}
for (String compositeUri : dcs) {
for (Artifact a : c.getArtifacts()) {
|