Method AbstractDeploymentPackage.getBundle(...) throws NullPointerException
---------------------------------------------------------------------------
Key: FELIX-1829
URL: https://issues.apache.org/jira/browse/FELIX-1829
Project: Felix
Issue Type: Bug
Components: Deployment Admin
Reporter: Pavel Kodl
Priority: Critical
Because in this method on row 115 is:
if (bundles[i].getSymbolicName().equals(symbolicName)) {
but should be something like:
String sn = bundles[i].getSymbolicName();
if (sn != null && sn.equals(symbolicName)) {
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.