From 47841410ce2643f7b713d9712cff7ccdf3f29e6d Mon Sep 17 00:00:00 2001 From: Kiran Hart Date: Thu, 27 Oct 2022 22:08:35 -0400 Subject: [PATCH] delete old statistic gui Took 8 seconds --- .../tweetzy/auctionhouse/guis/GUIStats.java | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/main/java/ca/tweetzy/auctionhouse/guis/GUIStats.java diff --git a/src/main/java/ca/tweetzy/auctionhouse/guis/GUIStats.java b/src/main/java/ca/tweetzy/auctionhouse/guis/GUIStats.java deleted file mode 100644 index 6aef16d..0000000 --- a/src/main/java/ca/tweetzy/auctionhouse/guis/GUIStats.java +++ /dev/null @@ -1,31 +0,0 @@ -package ca.tweetzy.auctionhouse.guis; - -import ca.tweetzy.auctionhouse.settings.Settings; -import org.bukkit.entity.Player; - -/** - * The current file has been created by Kiran Hart - * Date Created: September 01 2021 - * Time Created: 2:57 p.m. - * Usage of any code found within this class is prohibited unless given explicit permission otherwise - */ -public final class GUIStats extends AbstractPlaceholderGui { - - private final Player player; - - public GUIStats(final Player player) { - super(player); - this.player = player; - setTitle(Settings.GUI_STATS_VIEW_SELECT_TITLE.getString()); - setDefaultItem(Settings.GUI_STATS_VIEW_SELECT_BG_ITEM.getMaterial().parseItem()); - setUseLockedCells(true); - setAcceptsItems(false); - setAllowDrops(false); - setRows(3); - draw(); - } - - private void draw() { - - } -}