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/07 19:37:47 UTC

svn commit: r942156 - in /felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime: cpeg/ lang/ osgi/OSGiCommands.java

Author: rickhall
Date: Fri May  7 17:37:47 2010
New Revision: 942156

URL: http://svn.apache.org/viewvc?rev=942156&view=rev
Log:
Stop registering the bundle object as a command since it interferes
with "stop 0" and stops gogo instead of the framework. (FELIX-2328)

Removed:
    felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/cpeg/
    felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/lang/
Modified:
    felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java

Modified: felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java
URL: http://svn.apache.org/viewvc/felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java?rev=942156&r1=942155&r2=942156&view=diff
==============================================================================
--- felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java (original)
+++ felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java Fri May  7 17:37:47 2010
@@ -59,7 +59,7 @@ public class OSGiCommands
     {
         processor.addCommand("osgi", this);
         processor.addCommand("osgi", new Procedural());
-        processor.addCommand("osgi", bundle);
+//        processor.addCommand("osgi", bundle);
         processor.addCommand("osgi", context, BundleContext.class);
 
         try