Author: antelder
Date: Tue Jun  7 12:38:04 2011
New Revision: 1132977

URL: http://svn.apache.org/viewvc?rev=1132977&view=rev
Log:
Change member arg to be the last instead of the first argument which makes it 
easier to use

Modified:
    
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java

Modified: 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java?rev=1132977&r1=1132976&r2=1132977&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/Shell.java
 Tue Jun  7 12:38:04 2011
@@ -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;
     }


Reply via email to