diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-07 12:38:04 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-07 12:38:04 +0000 |
commit | 7b07b4006a841436abe772c5e345d2bd00113dd8 (patch) | |
tree | a3ce13f420eed12e8d5974f6c3b04e94173216f3 | |
parent | 13a270ec9090ca98e293fca62120f659aec0c834 (diff) |
Change member arg to be the last instead of the first argument which makes it easier to use
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1132977 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java | 2 |
1 files changed, 1 insertions, 1 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 decc622446..4345f3732e 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 @@ -451,7 +451,7 @@ public class Shell { return true;
}
- boolean remoteStart(String member, String contributionURI, String compositeURI) throws ActivationException {
+ boolean remoteStart(String contributionURI, String compositeURI, String member) throws ActivationException {
getNode().startComposite(member, contributionURI, compositeURI);
return true;
}
|