| 25 | import pcgen.cdom.enumeration.StringKey; |
| 26 | |
| 27 | public final class PCCheck extends PObject implements NonInteractive, SortKeyRequired, VarScoped |
| 28 | { |
| 29 | @Override |
| 30 | public Optional<String> getLocalScopeName() |
| 31 | { |
| 32 | return Optional.of("PC.SAVE"); |
| 33 | } |
| 34 | |
| 35 | @Override |
| 36 | public String getSortKey() |
| 37 | { |
| 38 | return get(StringKey.SORT_KEY); |
| 39 | } |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected