Update *.sh and *.java files to use Unix line endings

This commit is contained in:
arcox 2020-07-09 13:07:26 -04:00
parent a6d03c925f
commit 9c7982e8f6
273 changed files with 26704 additions and 26704 deletions

View file

@ -1,43 +1,43 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.abilities.keyword;
import java.io.ObjectStreamException;
import mage.abilities.MageSingleton;
import mage.abilities.StaticAbility;
import mage.constants.Zone;
/**
*
* @author LevelX2
*/
public class CanBlockSpaceflightAbility extends StaticAbility implements MageSingleton {
private static final CanBlockSpaceflightAbility instance = new CanBlockSpaceflightAbility();
private Object readResolve() throws ObjectStreamException {
return instance;
}
public static CanBlockSpaceflightAbility getInstance() {
return instance;
}
private CanBlockSpaceflightAbility() {
super(Zone.ALL, null);
}
@Override
public String getRule() {
return "{this} can block creatures with spaceflight.";
}
@Override
public CanBlockSpaceflightAbility copy() {
return instance;
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.abilities.keyword;
import java.io.ObjectStreamException;
import mage.abilities.MageSingleton;
import mage.abilities.StaticAbility;
import mage.constants.Zone;
/**
*
* @author LevelX2
*/
public class CanBlockSpaceflightAbility extends StaticAbility implements MageSingleton {
private static final CanBlockSpaceflightAbility instance = new CanBlockSpaceflightAbility();
private Object readResolve() throws ObjectStreamException {
return instance;
}
public static CanBlockSpaceflightAbility getInstance() {
return instance;
}
private CanBlockSpaceflightAbility() {
super(Zone.ALL, null);
}
@Override
public String getRule() {
return "{this} can block creatures with spaceflight.";
}
@Override
public CanBlockSpaceflightAbility copy() {
return instance;
}
}