(Category<Ability> cat, Nature nature)
| 8643 | } |
| 8644 | |
| 8645 | private Set<Ability> getAbilityList(Category<Ability> cat, Nature nature) |
| 8646 | { |
| 8647 | Set<Ability> newSet = new HashSet<>(); |
| 8648 | Collection<CNAbility> cnas = grantedAbilityFacet.getPoolAbilities(id, cat, nature); |
| 8649 | for (CNAbility cna : cnas) |
| 8650 | { |
| 8651 | newSet.add(cna.getAbility()); |
| 8652 | } |
| 8653 | return newSet; |
| 8654 | } |
| 8655 | |
| 8656 | public boolean containsKit(Kit kit) |
| 8657 | { |
no test coverage detected