code style: private static final

This commit is contained in:
xenohedron 2023-07-07 23:34:16 -04:00
parent ef3be3987b
commit 45b54e8cc4
13 changed files with 20 additions and 22 deletions

View file

@ -112,7 +112,7 @@ public class BestowAbility extends SpellAbility {
return "Bestow " + getManaCostsToPay().getText() + " <i>(If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)</i>";
}
static public void becomeCreature(Permanent permanent, Game game) {
public static void becomeCreature(Permanent permanent, Game game) {
// permanently changes to the object
if (permanent != null) {
MageObject basicObject = permanent.getBasicMageObject(game);
@ -126,7 +126,7 @@ public class BestowAbility extends SpellAbility {
}
}
static public void becomeAura(Card card) {
public static void becomeAura(Card card) {
// permanently changes to the object
if (card != null) {
card.addSubType(SubType.AURA);