Bundle Manifest unused
After some confusion during a debug session, i looked into why the "bundle->manifest" pointer was always NULL. It turns out this is initialized at creation, then never assigned. Yet the framework works fine? Apparently the manifest files distributed in each bundle ARE used, by the bundle revision. Each bundle revision holds a manifest, that is then used for module creation and data acquisition.
The question then remains, is this construct correct? in which case I would propose to delete the "bundle->manifest" field, since it causes confusion (and Celix could do with a bit less confusion).
Original creation date: 26/Jan/2016 Reporter: Menno van der Graaf
Comment by @pnoltes:
Yes remove the manifest from bundle.
Although manifest headers should be retrievable by the bundle api (see https://osgi.org/javadoc/r6/core/index.html) storing a bundle at the bundle revision is more logical. the bundle api retrieve it's manifest info from the current bundle revision. I