()
| 150 | } |
| 151 | |
| 152 | @Override |
| 153 | public GroupingState getGroupingState() |
| 154 | { |
| 155 | GroupingState gs = pcs == null ? GroupingState.ALLOWS_NONE : pcs.getGroupingState(); |
| 156 | return negated ? gs.negate() : gs; |
| 157 | } |
| 158 | |
| 159 | @Override |
| 160 | public <R> Collection<? extends R> getCollection(PlayerCharacter pc, Converter<T, R> c) |
nothing calls this directly
no test coverage detected