From 0464dcdac267ec16f00c6027f81778492c9e1376 Mon Sep 17 00:00:00 2001 From: "maurer.it" Date: Mon, 17 Jan 2011 23:06:45 -0500 Subject: [PATCH] Better javadocs --- .../mage/abilities/effects/CostModificationEffect.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage/src/mage/abilities/effects/CostModificationEffect.java b/Mage/src/mage/abilities/effects/CostModificationEffect.java index 874e5bcc57d..97516182f63 100644 --- a/Mage/src/mage/abilities/effects/CostModificationEffect.java +++ b/Mage/src/mage/abilities/effects/CostModificationEffect.java @@ -47,7 +47,7 @@ public interface CostModificationEffect> ext * Called by the {@link ContinuousEffects#costModification(java.util.UUID, mage.abilities.Ability, mage.game.Game) ContinuousEffects.costModification} * method. * - * @param game The game for which this effect should be applied to. + * @param game The game for which this effect should be applied. * @param source The source ability of this effect. * @param abilityToModify The {@link mage.abilities.SpellAbility} or {@link Ability} which should be modified. * @return @@ -58,9 +58,9 @@ public interface CostModificationEffect> ext * Called by the {@link ContinuousEffects#costModification(mage.abilities.Ability, mage.game.Game) ContinuousEffects.costModification} * method. * - * @param objectId The ability - * @param source - * @param game + * @param abilityToModify The ability to possibly modify. + * @param source The source ability of this effect. + * @param game The game for which this effect shoul dbe applied. * @return */ public boolean applies(Ability abilityToModify, Ability source, Game game);