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

svn commit: r943527 - /felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/osgi/OSGiCommands.java

Author: dbaum
Date: Wed May 12 14:49:18 2010
New Revision: 943527

URL: http://svn.apache.org/viewvc?rev=943527&view=rev
Log:
disable packageadmin and other coomands to avoid conflict with bundlecontext commands

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=943527&r1=943526&r2=943527&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 Wed May 12 14:49:18 2010
@@ -62,6 +62,7 @@ public class OSGiCommands
 //        processor.addCommand("osgi", bundle);
         processor.addCommand("osgi", context, BundleContext.class);
 
+	if (false) {
         try
         {
             processor.addCommand("osgi",
@@ -93,6 +94,7 @@ public class OSGiCommands
         {
             // can't happen with null filter
         }
+	}
     }
 
     public Bundle bundle(Bundle i)