use of org.apache.felix.framework.cache.Content in project felix by apache.
the class BundleWiringImpl method dispose.
public synchronized void dispose() {
if (m_fragmentContents != null) {
for (Content content : m_fragmentContents) {
content.close();
}
}
m_classLoader = null;
m_isDisposed = true;
m_accessorLookupCache = null;
}
Aggregations