You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2010/05/12 18:07:18 UTC

svn commit: r943564 - /felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java

Author: rickhall
Date: Wed May 12 16:07:18 2010
New Revision: 943564

URL: http://svn.apache.org/viewvc?rev=943564&view=rev
Log:
Minor improvement to "lb". (FELIX-2042)

Modified:
    felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java

Modified: felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java
URL: http://svn.apache.org/viewvc/felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java?rev=943564&r1=943563&r2=943564&view=diff
==============================================================================
--- felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java (original)
+++ felix/trunk/gogo/felixcommands/src/main/java/org/apache/felix/gogo/felixcommands/Basic.java Wed May 12 16:07:18 2010
@@ -963,13 +963,13 @@ public class Basic
         {
             System.out.println(
                 String.format(
-                "%5s %-11s %5s %s", "ID", "State", "Level", lastColumn));
+                "%5s|%-11s|%5s|%s", "ID", "State", "Level", lastColumn));
         }
         else
         {
             System.out.println(
                 String.format(
-                "%5s %-11s %s", "ID", "State", lastColumn));
+                "%5s|%-11s|%s", "ID", "State", lastColumn));
         }
         for (Bundle bundle : bundles)
         {