The constructor to BundleInfo is not needed. (FELIX-753)


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@703475 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/BundleInfo.java b/framework/src/main/java/org/apache/felix/framework/BundleInfo.java
index fdb5fb2..132358c 100644
--- a/framework/src/main/java/org/apache/felix/framework/BundleInfo.java
+++ b/framework/src/main/java/org/apache/felix/framework/BundleInfo.java
@@ -57,18 +57,6 @@
     private int m_lockCount = 0;
     private Thread m_lockThread = null;
 
-    protected BundleInfo(Logger logger, BundleArchive archive, IModule module)
-    {
-        m_logger = logger;
-        m_archive = archive;
-        m_modules = (module == null) ? new IModule[0] : new IModule[] { module };
-
-        m_state = Bundle.INSTALLED;
-        m_stale = false;
-        m_activator = null;
-        m_context = null;
-    }
-
     /**
      *  Returns the bundle archive associated with this bundle.
      * @return the bundle archive associated with this bundle.