From 24d58193fad4e924643c1cab787cb333891325a0 Mon Sep 17 00:00:00 2001 From: Justin Herlehy Date: Mon, 2 Jan 2017 19:23:15 -0500 Subject: [PATCH] Undo unintended rearranement of set file methods. --- Mage.Sets/src/mage/sets/AetherRevolt.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/sets/AetherRevolt.java b/Mage.Sets/src/mage/sets/AetherRevolt.java index 150c8dfd93c..1baacb8df91 100644 --- a/Mage.Sets/src/mage/sets/AetherRevolt.java +++ b/Mage.Sets/src/mage/sets/AetherRevolt.java @@ -44,8 +44,15 @@ import java.util.List; public class AetherRevolt extends ExpansionSet { private static final AetherRevolt fINSTANCE = new AetherRevolt(); + + public static AetherRevolt getInstance() { + return fINSTANCE; + } + protected final List savedSpecialLand = new ArrayList<>(); + //TODO: Check Paradox Engine's card number + private AetherRevolt() { super("Aether Revolt", "AER", ExpansionSet.buildDate(2017, 1, 20), SetType.EXPANSION); this.blockName = "Kaladesh"; @@ -92,12 +99,6 @@ public class AetherRevolt extends ExpansionSet { cards.add(new SetCardInfo("Yahenni's Expertise", 75, Rarity.RARE, mage.cards.y.YahennisExpertise.class)); } - //TODO: Check Paradox Engine's card number - - public static AetherRevolt getInstance() { - return fINSTANCE; - } - @Override public List getSpecialLand() { if (savedSpecialLand.isEmpty()) {