diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java index 210b4e7e..c01843f5 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/HolographicDisplays.java @@ -17,10 +17,10 @@ import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramsAPIProvider; import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker; import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook; import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager; -import me.filoghost.holographicdisplays.plugin.disk.ConfigManager; -import me.filoghost.holographicdisplays.plugin.disk.HologramDatabase; -import me.filoghost.holographicdisplays.plugin.disk.Settings; -import me.filoghost.holographicdisplays.plugin.disk.upgrade.LegacySymbolsUpgrade; +import me.filoghost.holographicdisplays.plugin.config.ConfigManager; +import me.filoghost.holographicdisplays.plugin.config.HologramDatabase; +import me.filoghost.holographicdisplays.plugin.config.Settings; +import me.filoghost.holographicdisplays.plugin.config.upgrade.LegacySymbolsUpgrade; import me.filoghost.holographicdisplays.plugin.hologram.api.APIHologramManager; import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager; import me.filoghost.holographicdisplays.plugin.hologram.tracking.LineClickListener; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeMessenger.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeMessenger.java index 1f6f6b89..f867749d 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeMessenger.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeMessenger.java @@ -6,7 +6,7 @@ package me.filoghost.holographicdisplays.plugin.bridge.bungeecord; import me.filoghost.fcommons.logging.Log; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.plugin.Plugin; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeServerTracker.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeServerTracker.java index 1f53e8bc..c7097141 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeServerTracker.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/BungeeServerTracker.java @@ -10,8 +10,8 @@ import me.filoghost.fcommons.ping.MinecraftServerPinger; import me.filoghost.fcommons.ping.PingParseException; import me.filoghost.fcommons.ping.PingResponse; import me.filoghost.holographicdisplays.common.DebugLogger; -import me.filoghost.holographicdisplays.plugin.disk.ServerAddress; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.ServerAddress; +import me.filoghost.holographicdisplays.plugin.config.Settings; import org.bukkit.Bukkit; import org.bukkit.plugin.Plugin; import org.jetbrains.annotations.NotNull; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/ServerInfo.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/ServerInfo.java index c6367e08..83ec99ab 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/ServerInfo.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/bridge/bungeecord/ServerInfo.java @@ -6,7 +6,7 @@ package me.filoghost.holographicdisplays.plugin.bridge.bungeecord; import me.filoghost.fcommons.Strings; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; public class ServerInfo { diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/HologramCommandManager.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/HologramCommandManager.java index aeceebda..b37982ad 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/HologramCommandManager.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/HologramCommandManager.java @@ -30,8 +30,8 @@ import me.filoghost.holographicdisplays.plugin.commands.subs.ReloadCommand; import me.filoghost.holographicdisplays.plugin.commands.subs.RemovelineCommand; import me.filoghost.holographicdisplays.plugin.commands.subs.SetlineCommand; import me.filoghost.holographicdisplays.plugin.commands.subs.TeleportCommand; -import me.filoghost.holographicdisplays.plugin.disk.ConfigManager; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.ConfigManager; +import me.filoghost.holographicdisplays.plugin.config.Settings; import me.filoghost.holographicdisplays.plugin.format.ColorScheme; import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram; import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/InternalHologramEditor.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/InternalHologramEditor.java index 8bcc53e7..3e0d1c47 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/InternalHologramEditor.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/InternalHologramEditor.java @@ -8,9 +8,9 @@ package me.filoghost.holographicdisplays.plugin.commands; import me.filoghost.fcommons.Strings; import me.filoghost.fcommons.command.validation.CommandException; import me.filoghost.fcommons.command.validation.CommandValidate; -import me.filoghost.holographicdisplays.plugin.disk.ConfigManager; -import me.filoghost.holographicdisplays.plugin.disk.HologramLineParser; -import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException; +import me.filoghost.holographicdisplays.plugin.config.ConfigManager; +import me.filoghost.holographicdisplays.plugin.config.HologramLineParser; +import me.filoghost.holographicdisplays.plugin.config.HologramLoadException; import me.filoghost.holographicdisplays.plugin.event.InternalHologramChangeEvent; import me.filoghost.holographicdisplays.plugin.event.InternalHologramChangeEvent.ChangeType; import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/subs/ReadtextCommand.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/subs/ReadtextCommand.java index 7e418473..7a2d0fbd 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/subs/ReadtextCommand.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/commands/subs/ReadtextCommand.java @@ -9,8 +9,8 @@ import me.filoghost.fcommons.command.CommandContext; import me.filoghost.fcommons.command.sub.SubCommandContext; import me.filoghost.fcommons.command.validation.CommandException; import me.filoghost.holographicdisplays.plugin.commands.InternalHologramEditor; -import me.filoghost.holographicdisplays.plugin.disk.HologramLineParser; -import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException; +import me.filoghost.holographicdisplays.plugin.config.HologramLineParser; +import me.filoghost.holographicdisplays.plugin.config.HologramLoadException; import me.filoghost.holographicdisplays.plugin.event.InternalHologramChangeEvent.ChangeType; import me.filoghost.holographicdisplays.plugin.format.ColorScheme; import me.filoghost.holographicdisplays.plugin.format.DisplayFormat; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ConfigManager.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ConfigManager.java similarity index 98% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ConfigManager.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ConfigManager.java index 38bd8ae5..d03e1e52 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ConfigManager.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ConfigManager.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.config.BaseConfigManager; import me.filoghost.fcommons.config.Config; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramConfig.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramConfig.java similarity index 98% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramConfig.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramConfig.java index b574f1f2..22e51989 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramConfig.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramConfig.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.Strings; import me.filoghost.fcommons.config.ConfigSection; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramDatabase.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramDatabase.java similarity index 97% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramDatabase.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramDatabase.java index 95a2675b..e9d5bb66 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramDatabase.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramDatabase.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.config.Config; import me.filoghost.fcommons.config.ConfigPath; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLineParser.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLineParser.java similarity index 98% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLineParser.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLineParser.java index 0eebcbdc..2e1e2a7c 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLineParser.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLineParser.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.MaterialsHelper; import me.filoghost.fcommons.Strings; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLoadException.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLoadException.java similarity index 86% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLoadException.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLoadException.java index f2ce1b00..75699ba2 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/HologramLoadException.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/HologramLoadException.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; public class HologramLoadException extends Exception { diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ServerAddress.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ServerAddress.java similarity index 91% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ServerAddress.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ServerAddress.java index 86126dc8..9978a42c 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/ServerAddress.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/ServerAddress.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; public class ServerAddress { diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/Settings.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/Settings.java similarity index 99% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/Settings.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/Settings.java index 3f20b872..71936acd 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/Settings.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/Settings.java @@ -4,7 +4,7 @@ * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.Strings; import me.filoghost.fcommons.logging.ErrorCollector; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/SettingsModel.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java similarity index 98% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/SettingsModel.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java index 6e9971d9..23ad8848 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/SettingsModel.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/SettingsModel.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.config.Config; import me.filoghost.fcommons.config.mapped.MappedConfig; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/StaticReplacements.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/StaticReplacements.java similarity index 97% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/StaticReplacements.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/StaticReplacements.java index 5bc5c07d..9285e7e9 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/StaticReplacements.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/StaticReplacements.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk; +package me.filoghost.holographicdisplays.plugin.config; import me.filoghost.fcommons.Colors; import me.filoghost.fcommons.config.ConfigPath; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/upgrade/LegacySymbolsUpgrade.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/upgrade/LegacySymbolsUpgrade.java similarity index 95% rename from plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/upgrade/LegacySymbolsUpgrade.java rename to plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/upgrade/LegacySymbolsUpgrade.java index 5bfed789..29ba67c0 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/disk/upgrade/LegacySymbolsUpgrade.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/config/upgrade/LegacySymbolsUpgrade.java @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: GPL-3.0-or-later */ -package me.filoghost.holographicdisplays.plugin.disk.upgrade; +package me.filoghost.holographicdisplays.plugin.config.upgrade; import me.filoghost.fcommons.Strings; import me.filoghost.fcommons.config.Config; @@ -14,7 +14,7 @@ import me.filoghost.fcommons.config.ConfigSection; import me.filoghost.fcommons.config.exception.ConfigLoadException; import me.filoghost.fcommons.config.exception.ConfigSaveException; import me.filoghost.fcommons.logging.ErrorCollector; -import me.filoghost.holographicdisplays.plugin.disk.ConfigManager; +import me.filoghost.holographicdisplays.plugin.config.ConfigManager; import org.apache.commons.lang.StringEscapeUtils; import java.io.IOException; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/format/DisplayFormat.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/format/DisplayFormat.java index ac078315..3fc70665 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/format/DisplayFormat.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/format/DisplayFormat.java @@ -7,7 +7,7 @@ package me.filoghost.holographicdisplays.plugin.format; import me.filoghost.fcommons.Colors; -import me.filoghost.holographicdisplays.plugin.disk.StaticReplacements; +import me.filoghost.holographicdisplays.plugin.config.StaticReplacements; import org.bukkit.ChatColor; import org.bukkit.command.CommandSender; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/api/APIHologram.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/api/APIHologram.java index 01622d77..282b686c 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/api/APIHologram.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/api/APIHologram.java @@ -8,7 +8,7 @@ package me.filoghost.holographicdisplays.plugin.hologram.api; import me.filoghost.fcommons.Preconditions; import me.filoghost.holographicdisplays.api.hologram.Hologram; import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramAdapter; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologram; import me.filoghost.holographicdisplays.plugin.hologram.tracking.LineTrackerManager; import org.bukkit.Location; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/base/BaseHologram.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/base/BaseHologram.java index 824d2fbc..896bd48f 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/base/BaseHologram.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/hologram/base/BaseHologram.java @@ -6,7 +6,7 @@ package me.filoghost.holographicdisplays.plugin.hologram.base; import me.filoghost.fcommons.Preconditions; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import me.filoghost.holographicdisplays.plugin.hologram.tracking.LineTrackerManager; import org.bukkit.Location; import org.bukkit.World; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/image/ImageMessage.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/image/ImageMessage.java index 1ef921ac..48daefc5 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/image/ImageMessage.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/image/ImageMessage.java @@ -6,7 +6,7 @@ package me.filoghost.holographicdisplays.plugin.image; import me.filoghost.fcommons.Colors; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import org.bukkit.ChatColor; import org.jetbrains.annotations.Nullable; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/listener/UpdateNotificationListener.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/listener/UpdateNotificationListener.java index d9d32af4..1c4b2743 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/listener/UpdateNotificationListener.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/listener/UpdateNotificationListener.java @@ -8,7 +8,7 @@ package me.filoghost.holographicdisplays.plugin.listener; import me.filoghost.fcommons.logging.Log; import me.filoghost.holographicdisplays.plugin.HolographicDisplays; import me.filoghost.holographicdisplays.plugin.Permissions; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import me.filoghost.holographicdisplays.plugin.format.ColorScheme; import me.filoghost.updatechecker.UpdateChecker; import org.bukkit.entity.Player; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/log/PrintableErrorCollector.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/log/PrintableErrorCollector.java index 033bdf62..52dad8d6 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/log/PrintableErrorCollector.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/log/PrintableErrorCollector.java @@ -11,7 +11,7 @@ import me.filoghost.fcommons.config.exception.ConfigException; import me.filoghost.fcommons.config.exception.ConfigSyntaxException; import me.filoghost.fcommons.logging.ErrorCollector; import me.filoghost.fcommons.logging.ErrorLog; -import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException; +import me.filoghost.holographicdisplays.plugin.config.HologramLoadException; import org.bukkit.Bukkit; import org.bukkit.ChatColor; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/AnimationRegistry.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/AnimationRegistry.java index 9db71eb0..cc982e0d 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/AnimationRegistry.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/AnimationRegistry.java @@ -10,7 +10,7 @@ import me.filoghost.fcommons.logging.ErrorCollector; import me.filoghost.holographicdisplays.api.placeholder.Placeholder; import me.filoghost.holographicdisplays.api.placeholder.PlaceholderFactory; import me.filoghost.holographicdisplays.common.DebugLogger; -import me.filoghost.holographicdisplays.plugin.disk.ConfigManager; +import me.filoghost.holographicdisplays.plugin.config.ConfigManager; import me.filoghost.holographicdisplays.plugin.format.DisplayFormat; import java.io.IOException; diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/DefaultPlaceholders.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/DefaultPlaceholders.java index c27a991c..85547816 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/DefaultPlaceholders.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/internal/DefaultPlaceholders.java @@ -8,7 +8,7 @@ package me.filoghost.holographicdisplays.plugin.placeholder.internal; import me.filoghost.fcommons.collection.CollectionUtils; import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker; import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.ServerInfo; -import me.filoghost.holographicdisplays.plugin.disk.Settings; +import me.filoghost.holographicdisplays.plugin.config.Settings; import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry; import org.bukkit.Bukkit; import org.bukkit.ChatColor;