CounterType: turn wrapper into an interface (#8572)

* CounterType: turn wrapper into an interface

* remove CounterType.get(CounterEnumType) helper
This commit is contained in:
Hans Mackowiak
2025-08-29 20:44:08 +02:00
committed by GitHub
parent 110e885c67
commit 75c7938f1e
34 changed files with 168 additions and 249 deletions

View File

@@ -556,7 +556,7 @@ public class PlayerControllerForTests extends PlayerController {
@Override
public CounterType chooseCounterType(List<CounterType> options, SpellAbility sa, String prompt, Map<String, Object> params) {
return Iterables.getFirst(options, CounterType.get(CounterEnumType.P1P1));
return Iterables.getFirst(options, CounterEnumType.P1P1);
}
@Override