rewrote singleton to enum where applicable

This commit is contained in:
ingmargoudt 2017-03-14 16:31:57 +01:00
parent 3b62489ef5
commit 234cfe9519
872 changed files with 1796 additions and 2135 deletions

View file

@ -38,10 +38,10 @@ import mage.cards.CardGraphicInfo;
*/
public class Theros extends ExpansionSet {
private static final Theros fINSTANCE = new Theros();
private static final Theros instance = new Theros();
public static Theros getInstance() {
return fINSTANCE;
return instance;
}
private Theros() {