for (String childGroup : deletedNavigationGroups) {
SiteKey key = SiteKey.group(childGroup);
NavigationService navService = portalConfigService.getNavigationService();
NavigationContext nav = navService.loadNavigation(key);
if (nav != null) {
navService.destroyNavigation(nav);
}
}
}
private Collection<String> getDescendantGroups(Group group, GroupHandler groupHandler) throws Exception {