Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[p2-dev] DirectorApplication error

In the initializeServices method, line 420 of 3.5, we have
if (profileId == null)
preservedProfile = System.setProperty(PROP_P2_PROFILE, profileId);
else
System.getProperties().remove(PROP_P2_PROFILE);

I believe this in error and it should be profileId != null. Setting property to null should throw an NullPointerException.


Back to the top