Due to a wrong implementation of equals in Permissions.Entry m_cache gets bigger and bigger. A fix is to replace line 180 of Permissions.java (in org.apache.felix.framework.security.util) with the following:
if (o instanceof Entry) {
return entry.equals(((Entry)o).get());
} else {
return false;
}
Regards,
Reto
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

