same thing for the corresponding method from the FeaturService API.
this is something we noticed because the cloudmix agent for smx4 relies on it to act on provisioning instructions
Description
same thing for the corresponding method from the FeaturService API.
this is something we noticed because the cloudmix agent for smx4 relies on it to act on provisioning instructions
Paul Taylor added a comment - 12/Dec/08 07:28 AM FeaturesServiceImpl.java removeRepository() was changed to look at the values in the map rather than the keys.
public void removeRepository(URI uri) {
if (repositories.values().contains(uri)) {
internalRemoveRepository(uri);
saveState();
}
Should be
if (repositories.containsKey(uri)) {
internalRemoveRepository(uri);
saveState();
} }
public void removeRepository(URI uri) {
if (repositories.values().contains(uri)) { internalRemoveRepository(uri); saveState(); }
Should be
if (repositories.containsKey(uri)) { internalRemoveRepository(uri); saveState(); } }