cleanup a few TODOs in some Quest files

This commit is contained in:
slapshot5
2011-12-09 01:09:05 +00:00
parent e3e7a18030
commit 0c87e32075
3 changed files with 36 additions and 36 deletions

View File

@@ -617,11 +617,11 @@ public final class QuestData {
/** /**
* Sets the card pool. * Sets the card pool.
* *
* @param cardPool * @param cardPool0
* the cardPool to set * the cardPool to set
*/ */
public void setCardPool(final ItemPool<InventoryItem> cardPool) { public void setCardPool(final ItemPool<InventoryItem> cardPool0) {
this.cardPool = cardPool; // TODO: Add 0 to parameter's name. this.cardPool = cardPool0;
} }
/** /**
@@ -636,11 +636,11 @@ public final class QuestData {
/** /**
* Sets the shop list. * Sets the shop list.
* *
* @param shopList * @param shopList0
* the shopList to set * the shopList to set
*/ */
public void setShopList(final ItemPool<InventoryItem> shopList) { public void setShopList(final ItemPool<InventoryItem> shopList0) {
this.shopList = shopList; // TODO: Add 0 to parameter's name. this.shopList = shopList0;
} }
/** /**
@@ -655,11 +655,11 @@ public final class QuestData {
/** /**
* Sets the new card list. * Sets the new card list.
* *
* @param newCardList * @param newCardList0
* the newCardList to set * the newCardList to set
*/ */
public void setNewCardList(final ItemPool<InventoryItem> newCardList) { public void setNewCardList(final ItemPool<InventoryItem> newCardList0) {
this.newCardList = newCardList; // TODO: Add 0 to parameter's name. this.newCardList = newCardList0;
} }
/** /**
@@ -674,31 +674,31 @@ public final class QuestData {
/** /**
* Sets the my decks. * Sets the my decks.
* *
* @param myDecks * @param myDecks0
* the myDecks to set * the myDecks to set
*/ */
public void setMyDecks(final Map<String, Deck> myDecks) { public void setMyDecks(final Map<String, Deck> myDecks0) {
this.myDecks = myDecks; // TODO: Add 0 to parameter's name. this.myDecks = myDecks0;
} }
/** /**
* Sets the inventory. * Sets the inventory.
* *
* @param inventory * @param inventory0
* the inventory to set * the inventory to set
*/ */
public void setInventory(final QuestInventory inventory) { public void setInventory(final QuestInventory inventory0) {
this.inventory = inventory; // TODO: Add 0 to parameter's name. this.inventory = inventory0;
} }
/** /**
* Sets the credits. * Sets the credits.
* *
* @param credits * @param credits0
* the credits to set * the credits to set
*/ */
public void setCredits(final long credits) { public void setCredits(final long credits0) {
this.credits = credits; // TODO: Add 0 to parameter's name. this.credits = credits0;
} }
/** /**
@@ -713,10 +713,10 @@ public final class QuestData {
/** /**
* Sets the version number. * Sets the version number.
* *
* @param versionNumber * @param versionNumber0
* the versionNumber to set * the versionNumber to set
*/ */
public void setVersionNumber(final int versionNumber) { public void setVersionNumber(final int versionNumber0) {
this.versionNumber = versionNumber; // TODO: Add 0 to parameter's name. this.versionNumber = versionNumber0;
} }
} }

View File

@@ -72,11 +72,11 @@ public class QuestStallDefinition {
/** /**
* Sets the fluff. * Sets the fluff.
* *
* @param fluff * @param fluff0
* the fluff to set * the fluff to set
*/ */
public void setFluff(final String fluff) { public void setFluff(final String fluff0) {
this.fluff = fluff; // TODO: Add 0 to parameter's name. this.fluff = fluff0;
} }
/** /**
@@ -91,11 +91,11 @@ public class QuestStallDefinition {
/** /**
* Sets the icon name. * Sets the icon name.
* *
* @param iconName * @param iconName0
* the iconName to set * the iconName to set
*/ */
public void setIconName(final String iconName) { public void setIconName(final String iconName0) {
this.iconName = iconName; // TODO: Add 0 to parameter's name. this.iconName = iconName0;
} }
/** /**
@@ -110,11 +110,11 @@ public class QuestStallDefinition {
/** /**
* Sets the display name. * Sets the display name.
* *
* @param displayName * @param displayName0
* the displayName to set * the displayName to set
*/ */
public void setDisplayName(final String displayName) { public void setDisplayName(final String displayName0) {
this.displayName = displayName; // TODO: Add 0 to parameter's name. this.displayName = displayName0;
} }
/** /**
@@ -129,10 +129,10 @@ public class QuestStallDefinition {
/** /**
* Sets the name. * Sets the name.
* *
* @param name * @param name0
* the name to set * the name to set
*/ */
public void setName(final String name) { public void setName(final String name0) {
this.name = name; // TODO: Add 0 to parameter's name. this.name = name0;
} }
} }

View File

@@ -255,10 +255,10 @@ public class QuestPetManager {
/** /**
* Sets the use plant. * Sets the use plant.
* *
* @param usePlant * @param usePlant0
* the usePlant to set * the usePlant to set
*/ */
public void setUsePlant(final boolean usePlant) { public void setUsePlant(final boolean usePlant0) {
this.usePlant = usePlant; // TODO: Add 0 to parameter's name. this.usePlant = usePlant0;
} }
} }