cleanup access to fields in AbilityImpl

where trivially possible, make private and use getters
This commit is contained in:
xenohedron 2024-03-29 01:53:03 -04:00
parent 4bef01901d
commit a768a4dd8a
23 changed files with 53 additions and 53 deletions

View file

@ -358,6 +358,6 @@ public class SpellAbility extends ActivatedAbilityImpl {
}
public void setId(UUID idToUse) {
this.id = idToUse;
this.id = idToUse; // TODO: research, why is it needed
}
}