mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed some minor checkstyle errors (mostly trailing linespaces)
This commit is contained in:
@@ -2818,8 +2818,7 @@ public class AbilityFactory {
|
||||
final AbilityFactory af = sa.getAbilityFactory();
|
||||
if (af == null) {
|
||||
sa.resolve();
|
||||
if(sa.getSubAbility() != null)
|
||||
{
|
||||
if (sa.getSubAbility() != null) {
|
||||
resolve(sa.getSubAbility(), usedStack);
|
||||
}
|
||||
return;
|
||||
|
||||
@@ -4825,8 +4825,7 @@ public class CardFactoryUtil {
|
||||
|
||||
for (String kw : card.getKeyword()) {
|
||||
|
||||
if (kw.startsWith("ETBReplacement"))
|
||||
{
|
||||
if (kw.startsWith("ETBReplacement")) {
|
||||
String[] splitkw = kw.split(":");
|
||||
ReplacementLayer layer = ReplacementLayer.smartValueOf(splitkw[1]);
|
||||
AbilityFactory af = new AbilityFactory();
|
||||
@@ -4864,7 +4863,9 @@ public class CardFactoryUtil {
|
||||
/**
|
||||
* TODO: Write javadoc for Constructor.
|
||||
* @param sourceCard
|
||||
* the source card
|
||||
* @param tgt
|
||||
* the target
|
||||
*/
|
||||
public ETBReplacementMove(Card sourceCard, Target tgt) {
|
||||
super(sourceCard, tgt);
|
||||
|
||||
Reference in New Issue
Block a user