Removed some unnecessary discussion about garbage collection after some
investigation led me to believe that the area of the edit was not causing
any GC issues.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@468410 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/Felix.java b/framework/src/main/java/org/apache/felix/framework/Felix.java
index 95b77ec..94de0e3 100644
--- a/framework/src/main/java/org/apache/felix/framework/Felix.java
+++ b/framework/src/main/java/org/apache/felix/framework/Felix.java
@@ -3152,13 +3152,6 @@
                     // This physically removes the bundle from memory
                     // as well as the bundle cache.
                     garbageCollectBundle(m_bundle);
-// TODO: FRAMEWORK - There is some indication that there is a memory leak
-//                   if we do not null the BundleInfo here. We should verify
-//                   that this is true, because if we null here then we have
-//                   check for nulls when we are releasing bundle locks, which
-//                   maybe cascading unnecessary ugliness. For now, I will
-//                   leave this commented out until we can investigate further.
-//                    m_bundle.setInfo(null);
                     m_bundle = null;
                 }
                 else