You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2008/10/10 15:40:51 UTC

svn commit: r703475 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java

Author: rickhall
Date: Fri Oct 10 06:40:50 2008
New Revision: 703475

URL: http://svn.apache.org/viewvc?rev=703475&view=rev
Log:
The constructor to BundleInfo is not needed. (FELIX-753)

Modified:
    felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java

Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java?rev=703475&r1=703474&r2=703475&view=diff
==============================================================================
--- felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java (original)
+++ felix/trunk/framework/src/main/java/org/apache/felix/framework/BundleInfo.java Fri Oct 10 06:40:50 2008
@@ -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.