(final AbilityCategory aCategory)
| 7493 | } |
| 7494 | |
| 7495 | public double getUserPoolBonus(final AbilityCategory aCategory) |
| 7496 | { |
| 7497 | BigDecimal userBonus = null; |
| 7498 | if (theUserPoolBonuses != null) |
| 7499 | { |
| 7500 | userBonus = theUserPoolBonuses.get(aCategory); |
| 7501 | } |
| 7502 | if (userBonus == null) |
| 7503 | { |
| 7504 | return 0.0d; |
| 7505 | } |
| 7506 | return userBonus.doubleValue(); |
| 7507 | } |
| 7508 | |
| 7509 | public BigDecimal getTotalAbilityPool(final AbilityCategory aCategory) |
| 7510 | { |
no test coverage detected