FELIX-5077 / FELIX-3331 - more reliable shutdown

- do not shut down the input stream, as it causes the update bundle
  functionality to break. Without this, the stopping of either the framework or
  the shell bundle still works properly.



git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1725513 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java b/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
index 9935981..133b54c 100644
--- a/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
+++ b/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
@@ -74,8 +74,6 @@
         {
             this.processor.removeSession(this);
             this.closed = true;
-
-            this.in = closeSilently(in);
         }
     }