forked from External/mage
rewrote singleton to enum where applicable
This commit is contained in:
parent
3b62489ef5
commit
234cfe9519
872 changed files with 1796 additions and 2135 deletions
|
|
@ -43,10 +43,10 @@ import mage.players.Player;
|
|||
*/
|
||||
public class ExileSpellEffect extends OneShotEffect implements MageSingleton {
|
||||
|
||||
private static final ExileSpellEffect fINSTANCE = new ExileSpellEffect();
|
||||
private static final ExileSpellEffect instance = new ExileSpellEffect();
|
||||
|
||||
public static ExileSpellEffect getInstance() {
|
||||
return fINSTANCE;
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ExileSpellEffect() {
|
||||
|
|
@ -56,7 +56,7 @@ public class ExileSpellEffect extends OneShotEffect implements MageSingleton {
|
|||
|
||||
@Override
|
||||
public ExileSpellEffect copy() {
|
||||
return fINSTANCE;
|
||||
return instance;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue