Removed obsolete Felix properties.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@790995 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gogo/gogo.launcher/src/main/java/org/apache/felix/gogo/launcher/Launcher.java b/gogo/gogo.launcher/src/main/java/org/apache/felix/gogo/launcher/Launcher.java
index af44cd1..e1fe721 100644
--- a/gogo/gogo.launcher/src/main/java/org/apache/felix/gogo/launcher/Launcher.java
+++ b/gogo/gogo.launcher/src/main/java/org/apache/felix/gogo/launcher/Launcher.java
@@ -101,8 +101,6 @@
 
         Constructor<?> c = fw.getConstructor(Map.class, List.class);
         Properties p = new Properties(System.getProperties());
-        p.setProperty("felix.cache.profile", "default");
-        p.setProperty("felix.embedded.execution", "true");
         Bundle bundle = (Bundle) c.newInstance(p, null);
 
         OSGiShell shell = new OSGiShell();
@@ -120,7 +118,6 @@
 
         if (bundle.getState() == Bundle.ACTIVE)
         {
-            bundle.getBundleContext().registerService(CommandProcessor.class.getName(), shell, null);
         }
         if (console)
         {
@@ -130,7 +127,6 @@
         }
     }
 
-
     private static void classpath(String string) throws MalformedURLException
     {
         StringTokenizer st = new StringTokenizer(string, File.pathSeparator);
@@ -157,4 +153,4 @@
             }
         }
     }
-}
+}
\ No newline at end of file