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.
*
* @param cardPool
* @param cardPool0
* the cardPool to set
*/
public void setCardPool(final ItemPool<InventoryItem> cardPool) {
this.cardPool = cardPool; // TODO: Add 0 to parameter's name.
public void setCardPool(final ItemPool<InventoryItem> 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<InventoryItem> shopList) {
this.shopList = shopList; // TODO: Add 0 to parameter's name.
public void setShopList(final ItemPool<InventoryItem> 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<InventoryItem> newCardList) {
this.newCardList = newCardList; // TODO: Add 0 to parameter's name.
public void setNewCardList(final ItemPool<InventoryItem> 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<String, Deck> myDecks) {
this.myDecks = myDecks; // TODO: Add 0 to parameter's name.
public void setMyDecks(final Map<String, Deck> 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;
}
}

View File

@@ -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;
}
}

View File

@@ -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;
}
}