You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/09/10 18:42:48 UTC

svn commit: r693890 - /servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java

Author: gnodet
Date: Wed Sep 10 09:42:47 2008
New Revision: 693890

URL: http://svn.apache.org/viewvc?rev=693890&view=rev
Log:
SMX4KNL-80: "features list" output has a version column but no infos

Modified:
    servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java

Modified: servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java?rev=693890&r1=693889&r2=693890&view=diff
==============================================================================
--- servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java (original)
+++ servicemix/smx4/kernel/branches/kernel-1.0.x/gshell/gshell-features/src/main/java/org/apache/servicemix/gshell/features/internal/commands/ListFeaturesCommand.java Wed Sep 10 09:42:47 2008
@@ -32,7 +32,7 @@
             features = admin.listInstalledFeatures();
         } else {
         	// Print column headers.
-        	io.out.println("  State          Version       Name");
+        	io.out.println(" State        Name");
             features = admin.listFeatures();
         }
         if ((features != null) && (features.length > 0)) {