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

@ -39,9 +39,9 @@ public class SquadTest extends CardTestPlayerBase {
* Arco-Flagellant cant block.
* Endurant Pay 3 life: Arco-Flagellant gains indestructible until end of turn.
*/
private final static String flagellant = "Arco-Flagellant";
private static final String flagellant = "Arco-Flagellant";
private final static String swamp = "Swamp";
private static final String swamp = "Swamp";
@Test
public void test_Squad_NotUsed_Manual() {

View file

@ -7,8 +7,8 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
public class ValkiGodOfLiesTest extends CardTestPlayerBase {
private final static String valki = "Valki, God of Lies";
private final static String kraken = "Kraken Hatchling";
private static final String valki = "Valki, God of Lies";
private static final String kraken = "Kraken Hatchling";
@Test
public void testBecomeCopyOfExiledCreatureCard() {