diff options
| author | Elikill58 <arpetzouille@gmail.com> | 2023-08-01 18:56:03 +0200 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2023-08-26 14:57:49 +0100 |
| commit | 3e677aec47a8fd2635f2337a5dba4f8119eab9a2 (patch) | |
| tree | b08786fd7459e4e5e21222a9f87ef6ca5cbfde43 | |
| parent | dc255263fc9cfdacbe748dc3561994b83a363019 (diff) | |
Clean project and update gitignore
4 files changed, 3 insertions, 5 deletions
@@ -22,4 +22,6 @@ CHANGELOG_GFM UPDATE_MESSAGE *.classpath -*.project
\ No newline at end of file +*.project +*/bin/ +*.settings/
\ No newline at end of file diff --git a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminCommandSwitcher.java b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminCommandSwitcher.java index d786636f..0743e009 100644 --- a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminCommandSwitcher.java +++ b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/command/AdminCommandSwitcher.java @@ -7,11 +7,8 @@ import org.jetbrains.annotations.Nullable; public class AdminCommandSwitcher extends CommandSwitcher { - private final BukkitQuestsPlugin plugin; - public AdminCommandSwitcher(BukkitQuestsPlugin plugin) { super(1); - this.plugin = plugin; super.subcommands.put("opengui", new AdminOpenguiCommandSwitcher(plugin)); super.subcommands.put("moddata", new AdminModdataCommandSwitcher(plugin)); diff --git a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/questcompleter/BukkitQuestCompleter.java b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/questcompleter/BukkitQuestCompleter.java index bf264a69..3c1edbe2 100644 --- a/bukkit/src/main/java/com/leonardobishop/quests/bukkit/questcompleter/BukkitQuestCompleter.java +++ b/bukkit/src/main/java/com/leonardobishop/quests/bukkit/questcompleter/BukkitQuestCompleter.java @@ -22,7 +22,6 @@ public class BukkitQuestCompleter implements QuestCompleter, Runnable { private final LinkedList<QuestProgressFile> fullCheckQueue = new LinkedList<>(); private final LinkedList<UUID> expiredCheckQueue = new LinkedList<>(); private final BukkitQuestsPlugin plugin; - private int expiredQuestsCheckCountdown; public BukkitQuestCompleter(BukkitQuestsPlugin plugin) { this.plugin = plugin; diff --git a/bungee/build.gradle b/bungee/build.gradle deleted file mode 100644 index e69de29b..00000000 --- a/bungee/build.gradle +++ /dev/null |
