Cleanup a couple comments

This commit is contained in:
Jetz
2024-06-25 17:17:14 -04:00
parent da34acd210
commit cfc33fd491
2 changed files with 2 additions and 3 deletions

View File

@@ -1981,7 +1981,7 @@ public class CardFactoryUtil {
} else if (keyword.startsWith("Prize")) { } else if (keyword.startsWith("Prize")) {
final String[] k = keyword.split(":"); final String[] k = keyword.split(":");
SpellAbility sa = AbilityFactory.getAbility(card, k[1]); //Is this the right thing? SpellAbility sa = AbilityFactory.getAbility(card, k[1]);
String descStr = "Prize — " + sa.getDescription(); String descStr = "Prize — " + sa.getDescription();
final String trigStr = "Mode$ ClaimPrize | Static$ True | TriggerZones$ Battlefield | ValidCard$ Card.Self" + final String trigStr = "Mode$ ClaimPrize | Static$ True | TriggerZones$ Battlefield | ValidCard$ Card.Self" +

View File

@@ -107,7 +107,6 @@ public abstract class ItemManager<T extends InventoryItem> extends FContainer im
* ItemManager Constructor. * ItemManager Constructor.
* *
* @param genericType0 the class of item that this table will contain * @param genericType0 the class of item that this table will contain
* @param statLabels0 stat labels for this item manager
* @param wantUnique0 whether this table should display only one item with the same name * @param wantUnique0 whether this table should display only one item with the same name
*/ */
protected ItemManager(final Class<T> genericType0, final boolean wantUnique0) { protected ItemManager(final Class<T> genericType0, final boolean wantUnique0) {
@@ -754,7 +753,7 @@ public abstract class ItemManager<T extends InventoryItem> extends FContainer im
} }
/** /**
* Programmatically method to set this ItemManager's advanced search filter value. * Programmatic method to set this ItemManager's advanced search filter value.
* Other filters will be cleared. * Other filters will be cleared.
*/ */
public void applyAdvancedSearchFilter(String[] filterStrings, boolean joinAnd) { public void applyAdvancedSearchFilter(String[] filterStrings, boolean joinAnd) {