You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by pi...@apache.org on 2011/04/30 23:21:16 UTC

svn commit: r1098167 - /karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java

Author: pieber
Date: Sat Apr 30 21:21:15 2011
New Revision: 1098167

URL: http://svn.apache.org/viewvc?rev=1098167&view=rev
Log:
[KARAF-535] Suppress defaults to output in list bundles threshold

Signed-off-by: Andreas Pieber <an...@gmail.com>

Modified:
    karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java

Modified: karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java
URL: http://svn.apache.org/viewvc/karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java?rev=1098167&r1=1098166&r2=1098167&view=diff
==============================================================================
--- karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java (original)
+++ karaf/trunk/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/ListBundles.java Sat Apr 30 21:21:15 2011
@@ -39,7 +39,7 @@ public class ListBundles extends OsgiCom
     @Option(name = "-u", description = "Shows the update locations", required = false, multiValued = false)
     boolean showUpdate;
     
-    @Option(name = "-t", description = "Specifies the bundle threshold; bundles with a start-level less than this value will not get printed out.", required = false, multiValued = false)
+    @Option(name = "-t", valueToShowInHelp = "", description = "Specifies the bundle threshold; bundles with a start-level less than this value will not get printed out.", required = false, multiValued = false)
     int bundleLevelThreshold = -1;
 
     private List<BundleStateListener.Factory> bundleStateListenerFactories;