removed unneeded todos

This commit is contained in:
Kiran Hart 2021-06-27 12:02:33 -04:00
parent 2193362251
commit 2f4fda7bd2
2 changed files with 0 additions and 3 deletions

View File

@ -28,7 +28,6 @@ import java.util.UUID;
* Usage of any code found within this class is prohibited unless given explicit permission otherwise * Usage of any code found within this class is prohibited unless given explicit permission otherwise
*/ */
// TODO CLEAN UP THE ENTIRE PRICE UPDATE THING
public class GUISellItem extends Gui { public class GUISellItem extends Gui {
private final AuctionPlayer auctionPlayer; private final AuctionPlayer auctionPlayer;

View File

@ -21,7 +21,6 @@ import java.util.HashMap;
* Usage of any code found within this class is prohibited unless given explicit permission otherwise * Usage of any code found within this class is prohibited unless given explicit permission otherwise
*/ */
//TODO IN the main auction house, switch the filter icon to the currently selected filter
public class GUIFilterSelection extends Gui { public class GUIFilterSelection extends Gui {
final AuctionPlayer auctionPlayer; final AuctionPlayer auctionPlayer;
@ -53,7 +52,6 @@ public class GUIFilterSelection extends Gui {
setButton(1, 5, ConfigurationItemHelper.createConfigurationItem(Settings.GUI_FILTER_ITEMS_SEARCH_ITEM.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_NAME.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_LORE.getStringList(), new HashMap<String, Object>(){{ setButton(1, 5, ConfigurationItemHelper.createConfigurationItem(Settings.GUI_FILTER_ITEMS_SEARCH_ITEM.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_NAME.getString(), Settings.GUI_FILTER_ITEMS_SEARCH_LORE.getStringList(), new HashMap<String, Object>(){{
put("%filter_search_phrase%", auctionPlayer.getCurrentSearchPhrase()); put("%filter_search_phrase%", auctionPlayer.getCurrentSearchPhrase());
}}), e -> { }}), e -> {
//TODO ADD AN ACTUAL MESSAGE NODE FOR THIS
e.gui.exit(); e.gui.exit();
ChatPrompt.showPrompt(AuctionHouse.getInstance(), this.auctionPlayer.getPlayer(), AuctionHouse.getInstance().getLocale().getMessage("general.entersearchphrase").getMessage(), chat -> { ChatPrompt.showPrompt(AuctionHouse.getInstance(), this.auctionPlayer.getPlayer(), AuctionHouse.getInstance().getLocale().getMessage("general.entersearchphrase").getMessage(), chat -> {
if (chat.getMessage() != null && chat.getMessage().length() !=0) { if (chat.getMessage() != null && chat.getMessage().length() !=0) {