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/10/27 20:44:20 UTC

svn commit: r1028065 - /felix/trunk/gogo/command/src/main/java/org/apache/felix/gogo/command/Basic.java

Author: rickhall
Date: Wed Oct 27 18:44:20 2010
New Revision: 1028065

URL: http://svn.apache.org/viewvc?rev=1028065&view=rev
Log:
Fix logic bug in bundlelevel command. (FELIX-2676)

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

Modified: felix/trunk/gogo/command/src/main/java/org/apache/felix/gogo/command/Basic.java
URL: http://svn.apache.org/viewvc/felix/trunk/gogo/command/src/main/java/org/apache/felix/gogo/command/Basic.java?rev=1028065&r1=1028064&r2=1028065&view=diff
==============================================================================
--- felix/trunk/gogo/command/src/main/java/org/apache/felix/gogo/command/Basic.java (original)
+++ felix/trunk/gogo/command/src/main/java/org/apache/felix/gogo/command/Basic.java Wed Oct 27 18:44:20 2010
@@ -134,7 +134,7 @@ public class Basic
         // Set the bundle start level.
         else if (set)
         {
-            if ((bundles != null) && (bundles.length == 0))
+            if ((bundles != null) && (bundles.length != 0))
             {
                 for (Bundle bundle: bundles)
                 {