You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by cc...@apache.org on 2008/10/29 04:40:35 UTC

svn commit: r708763 - /servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java

Author: ccustine
Date: Tue Oct 28 20:40:35 2008
New Revision: 708763

URL: http://svn.apache.org/viewvc?rev=708763&view=rev
Log:
SMX4KNL-128  Updating ActiveMQ commands to gshell trunk

Modified:
    servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java

Modified: servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java?rev=708763&r1=708762&r2=708763&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java (original)
+++ servicemix/smx4/features/trunk/activemq/activemq-commands/src/main/java/org/apache/servicemix/kernel/gshell/activemq/AdministrationCommand.java Tue Oct 28 20:40:35 2008
@@ -47,7 +47,7 @@
     try {
         currentCommand.setCommandContext(context2);
         currentCommand.execute(new ArrayList<String>(Arrays.asList(args)));
-        return Result.SUCCESS;
+        return null;
     } catch (Throwable e) {
         Throwable cur = e;
         while (cur.getCause() != null) {