* Minor formatting.

This commit is contained in:
LevelX2 2014-03-14 14:00:29 +01:00
parent 317d07215c
commit 09b7e7baea
4 changed files with 12 additions and 2 deletions

View file

@ -362,6 +362,7 @@ public interface Ability extends Controllable, Serializable {
* Returns true if this abilities source is in the zone for the ability
*
* @param game
* @param source
* @param checkLKI
* @return
*/

View file

@ -458,7 +458,7 @@ public abstract class AbilityImpl<T extends AbilityImpl<T>> implements Ability {
}
@Override
public Costs getCosts() {
public Costs<Cost> getCosts() {
return costs;
}
@ -484,7 +484,7 @@ public abstract class AbilityImpl<T extends AbilityImpl<T>> implements Ability {
}
@Override
public Costs getOptionalCosts() {
public Costs<Cost> getOptionalCosts() {
return optionalCosts;
}

View file

@ -39,6 +39,7 @@ import mage.players.Player;
/**
*
* @author BetaSteward_at_googlemail.com
* @param <T>
*/
public abstract class TriggeredAbilityImpl<T extends TriggeredAbilityImpl<T>> extends AbilityImpl<T> implements TriggeredAbility {