From 0c87e32075aa471befbf9af0df2fd9fb487dd78c Mon Sep 17 00:00:00 2001 From: slapshot5 Date: Fri, 9 Dec 2011 01:09:05 +0000 Subject: [PATCH] cleanup a few TODOs in some Quest files --- src/main/java/forge/quest/data/QuestData.java | 42 +++++++++---------- .../data/bazaar/QuestStallDefinition.java | 24 +++++------ .../forge/quest/data/pet/QuestPetManager.java | 6 +-- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/main/java/forge/quest/data/QuestData.java b/src/main/java/forge/quest/data/QuestData.java index 551f429409f..64606248c68 100644 --- a/src/main/java/forge/quest/data/QuestData.java +++ b/src/main/java/forge/quest/data/QuestData.java @@ -617,11 +617,11 @@ public final class QuestData { /** * Sets the card pool. * - * @param cardPool + * @param cardPool0 * the cardPool to set */ - public void setCardPool(final ItemPool cardPool) { - this.cardPool = cardPool; // TODO: Add 0 to parameter's name. + public void setCardPool(final ItemPool cardPool0) { + this.cardPool = cardPool0; } /** @@ -636,11 +636,11 @@ public final class QuestData { /** * Sets the shop list. * - * @param shopList + * @param shopList0 * the shopList to set */ - public void setShopList(final ItemPool shopList) { - this.shopList = shopList; // TODO: Add 0 to parameter's name. + public void setShopList(final ItemPool shopList0) { + this.shopList = shopList0; } /** @@ -655,11 +655,11 @@ public final class QuestData { /** * Sets the new card list. * - * @param newCardList + * @param newCardList0 * the newCardList to set */ - public void setNewCardList(final ItemPool newCardList) { - this.newCardList = newCardList; // TODO: Add 0 to parameter's name. + public void setNewCardList(final ItemPool newCardList0) { + this.newCardList = newCardList0; } /** @@ -674,31 +674,31 @@ public final class QuestData { /** * Sets the my decks. * - * @param myDecks + * @param myDecks0 * the myDecks to set */ - public void setMyDecks(final Map myDecks) { - this.myDecks = myDecks; // TODO: Add 0 to parameter's name. + public void setMyDecks(final Map myDecks0) { + this.myDecks = myDecks0; } /** * Sets the inventory. * - * @param inventory + * @param inventory0 * the inventory to set */ - public void setInventory(final QuestInventory inventory) { - this.inventory = inventory; // TODO: Add 0 to parameter's name. + public void setInventory(final QuestInventory inventory0) { + this.inventory = inventory0; } /** * Sets the credits. * - * @param credits + * @param credits0 * the credits to set */ - public void setCredits(final long credits) { - this.credits = credits; // TODO: Add 0 to parameter's name. + public void setCredits(final long credits0) { + this.credits = credits0; } /** @@ -713,10 +713,10 @@ public final class QuestData { /** * Sets the version number. * - * @param versionNumber + * @param versionNumber0 * the versionNumber to set */ - public void setVersionNumber(final int versionNumber) { - this.versionNumber = versionNumber; // TODO: Add 0 to parameter's name. + public void setVersionNumber(final int versionNumber0) { + this.versionNumber = versionNumber0; } } diff --git a/src/main/java/forge/quest/data/bazaar/QuestStallDefinition.java b/src/main/java/forge/quest/data/bazaar/QuestStallDefinition.java index eb34dbe5cf2..0fd362681e5 100644 --- a/src/main/java/forge/quest/data/bazaar/QuestStallDefinition.java +++ b/src/main/java/forge/quest/data/bazaar/QuestStallDefinition.java @@ -72,11 +72,11 @@ public class QuestStallDefinition { /** * Sets the fluff. * - * @param fluff + * @param fluff0 * the fluff to set */ - public void setFluff(final String fluff) { - this.fluff = fluff; // TODO: Add 0 to parameter's name. + public void setFluff(final String fluff0) { + this.fluff = fluff0; } /** @@ -91,11 +91,11 @@ public class QuestStallDefinition { /** * Sets the icon name. * - * @param iconName + * @param iconName0 * the iconName to set */ - public void setIconName(final String iconName) { - this.iconName = iconName; // TODO: Add 0 to parameter's name. + public void setIconName(final String iconName0) { + this.iconName = iconName0; } /** @@ -110,11 +110,11 @@ public class QuestStallDefinition { /** * Sets the display name. * - * @param displayName + * @param displayName0 * the displayName to set */ - public void setDisplayName(final String displayName) { - this.displayName = displayName; // TODO: Add 0 to parameter's name. + public void setDisplayName(final String displayName0) { + this.displayName = displayName0; } /** @@ -129,10 +129,10 @@ public class QuestStallDefinition { /** * Sets the name. * - * @param name + * @param name0 * the name to set */ - public void setName(final String name) { - this.name = name; // TODO: Add 0 to parameter's name. + public void setName(final String name0) { + this.name = name0; } } diff --git a/src/main/java/forge/quest/data/pet/QuestPetManager.java b/src/main/java/forge/quest/data/pet/QuestPetManager.java index edd4e3a7fc2..726cea574f1 100644 --- a/src/main/java/forge/quest/data/pet/QuestPetManager.java +++ b/src/main/java/forge/quest/data/pet/QuestPetManager.java @@ -255,10 +255,10 @@ public class QuestPetManager { /** * Sets the use plant. * - * @param usePlant + * @param usePlant0 * the usePlant to set */ - public void setUsePlant(final boolean usePlant) { - this.usePlant = usePlant; // TODO: Add 0 to parameter's name. + public void setUsePlant(final boolean usePlant0) { + this.usePlant = usePlant0; } }