return;
}
for (ProfileKey key : activeProfiles)
{
ManagedProfile managed = actionController.getManagedProfile(key);
// Check if it's a mutable profile
if (managed != null && managed.getProfile().isMutable() == false)
{
if (trace)
log.trace("Ignoring not mutable profile: " + key);
continue;
}
MutableProfile activeProfile = MutableProfile.class.cast(managed.getProfile());
ManagedProfileDeployer deployer = managed.getManagedDeployer();
Collection<ModificationInfo> modifiedDeployments = activeProfile.getModifiedDeployments();
Collection<String> checkNames = new ArrayList<String>();
for (ModificationInfo info : modifiedDeployments)
{