| 23 | import pcgen.core.SpecialAbility; |
| 24 | |
| 25 | public final class SAtoStringProcessor implements QualifiedActor<SpecialAbility, String> |
| 26 | { |
| 27 | private final PlayerCharacter pc; |
| 28 | |
| 29 | public SAtoStringProcessor(PlayerCharacter pc) |
| 30 | { |
| 31 | this.pc = pc; |
| 32 | } |
| 33 | |
| 34 | @Override |
| 35 | public String act(SpecialAbility sa, Object source) |
| 36 | { |
| 37 | return sa.getParsedText(pc, pc, (CDOMObject) source); |
| 38 | } |
| 39 | } |
nothing calls this directly
no outgoing calls
no test coverage detected