mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-12-20 15:57:49 +01:00
Format imports
This commit is contained in:
parent
4e47f5cf7c
commit
31f0ba206d
@ -5,8 +5,8 @@
|
|||||||
*/
|
*/
|
||||||
package com.gmail.filoghost.holographicdisplays.api;
|
package com.gmail.filoghost.holographicdisplays.api;
|
||||||
|
|
||||||
import com.gmail.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
|
||||||
import com.gmail.filoghost.holographicdisplays.api.internal.HologramsAPIProvider;
|
import com.gmail.filoghost.holographicdisplays.api.internal.HologramsAPIProvider;
|
||||||
|
import com.gmail.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
|
@ -11,34 +11,34 @@ import me.filoghost.fcommons.FeatureSupport;
|
|||||||
import me.filoghost.fcommons.config.exception.ConfigException;
|
import me.filoghost.fcommons.config.exception.ConfigException;
|
||||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||||
import me.filoghost.holographicdisplays.api.internal.HolographicDisplaysAPIProvider;
|
import me.filoghost.holographicdisplays.api.internal.HolographicDisplaysAPIProvider;
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.ProtocolPacketSettings;
|
||||||
import me.filoghost.holographicdisplays.plugin.api.current.DefaultHolographicDisplaysAPIProvider;
|
import me.filoghost.holographicdisplays.plugin.api.current.DefaultHolographicDisplaysAPIProvider;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramsAPIProvider;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker;
|
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.ProtocolLibHook;
|
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.ProtocolLibHook;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
|
||||||
import me.filoghost.holographicdisplays.common.nms.ProtocolPacketSettings;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.HologramDatabase;
|
import me.filoghost.holographicdisplays.plugin.disk.HologramDatabase;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.upgrade.LegacySymbolsUpgrade;
|
import me.filoghost.holographicdisplays.plugin.disk.upgrade.LegacySymbolsUpgrade;
|
||||||
import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramsAPIProvider;
|
import me.filoghost.holographicdisplays.plugin.hologram.api.APIHologram;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.hologram.api.APIHologramManager;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.listener.ChunkListener;
|
import me.filoghost.holographicdisplays.plugin.listener.ChunkListener;
|
||||||
import me.filoghost.holographicdisplays.plugin.listener.InteractListener;
|
import me.filoghost.holographicdisplays.plugin.listener.InteractListener;
|
||||||
import me.filoghost.holographicdisplays.plugin.listener.SpawnListener;
|
import me.filoghost.holographicdisplays.plugin.listener.SpawnListener;
|
||||||
import me.filoghost.holographicdisplays.plugin.listener.UpdateNotificationListener;
|
import me.filoghost.holographicdisplays.plugin.listener.UpdateNotificationListener;
|
||||||
import me.filoghost.holographicdisplays.plugin.log.PrintableErrorCollector;
|
import me.filoghost.holographicdisplays.plugin.log.PrintableErrorCollector;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.api.APIHologram;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.api.APIHologramManager;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.TickClock;
|
import me.filoghost.holographicdisplays.plugin.placeholder.TickClock;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.TickingTask;
|
import me.filoghost.holographicdisplays.plugin.placeholder.TickingTask;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.internal.AnimationRegistry;
|
import me.filoghost.holographicdisplays.plugin.placeholder.internal.AnimationRegistry;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.internal.DefaultPlaceholders;
|
import me.filoghost.holographicdisplays.plugin.placeholder.internal.DefaultPlaceholders;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderTracker;
|
||||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||||
import org.bstats.bukkit.MetricsLite;
|
import org.bstats.bukkit.MetricsLite;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord;
|
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord;
|
||||||
|
|
||||||
import me.filoghost.fcommons.logging.Log;
|
import me.filoghost.fcommons.logging.Log;
|
||||||
|
import me.filoghost.holographicdisplays.common.DebugLogger;
|
||||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.PingResponse;
|
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.PingResponse;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.ServerPinger;
|
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.ServerPinger;
|
||||||
import me.filoghost.holographicdisplays.common.DebugLogger;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ServerAddress;
|
import me.filoghost.holographicdisplays.plugin.disk.ServerAddress;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
@ -12,18 +12,18 @@ import com.comphenix.protocol.events.PacketAdapter;
|
|||||||
import com.comphenix.protocol.events.PacketContainer;
|
import com.comphenix.protocol.events.PacketContainer;
|
||||||
import com.comphenix.protocol.events.PacketEvent;
|
import com.comphenix.protocol.events.PacketEvent;
|
||||||
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.TrackedLine;
|
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardTextLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardTextLine;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.common.nms.ProtocolPacketSettings;
|
import me.filoghost.holographicdisplays.common.nms.ProtocolPacketSettings;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSArmorStand;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSArmorStand;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.TrackedLine;
|
||||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
|
@ -6,14 +6,6 @@
|
|||||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||||
|
|
||||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerAttachEntity;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityDestroy;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerMount;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity.ObjectTypes;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardItemLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardItemLine;
|
||||||
@ -23,6 +15,14 @@ import me.filoghost.holographicdisplays.common.nms.entity.NMSArmorStand;
|
|||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSItem;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSItem;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSSlime;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSSlime;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerAttachEntity;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityDestroy;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerMount;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity.ObjectTypes;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
||||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
@ -9,12 +9,21 @@ import me.filoghost.fcommons.command.CommandContext;
|
|||||||
import me.filoghost.fcommons.command.sub.SubCommand;
|
import me.filoghost.fcommons.command.sub.SubCommand;
|
||||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||||
import me.filoghost.fcommons.command.sub.SubCommandManager;
|
import me.filoghost.fcommons.command.sub.SubCommandManager;
|
||||||
|
import me.filoghost.holographicdisplays.common.Utils;
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.AddlineCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.AddlineCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.AlignCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.AlignCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.CopyCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.CopyCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.CreateCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.CreateCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.DebugCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.DeleteCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.EditCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.HelpCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.InfoCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.InsertlineCommand;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.subs.ListCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.MovehereCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.MovehereCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.NearCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.NearCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.QuickEditCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.QuickEditCommand;
|
||||||
@ -24,15 +33,6 @@ import me.filoghost.holographicdisplays.plugin.commands.subs.ReloadCommand;
|
|||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.RemovelineCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.RemovelineCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.SetlineCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.SetlineCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.TeleportCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.subs.TeleportCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.DebugCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.DeleteCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.EditCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.HelpCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.InfoCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.InsertlineCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.subs.ListCommand;
|
|
||||||
import me.filoghost.holographicdisplays.common.Utils;
|
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||||
|
|
||||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.Chunk;
|
import org.bukkit.Chunk;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
|
@ -8,8 +8,8 @@ package me.filoghost.holographicdisplays.plugin.commands.subs;
|
|||||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||||
import me.filoghost.fcommons.command.validation.CommandException;
|
import me.filoghost.fcommons.command.validation.CommandException;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
||||||
|
@ -9,9 +9,9 @@ import me.filoghost.fcommons.command.sub.SubCommandContext;
|
|||||||
import me.filoghost.fcommons.command.validation.CommandException;
|
import me.filoghost.fcommons.command.validation.CommandException;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
||||||
import net.md_5.bungee.api.ChatColor;
|
import net.md_5.bungee.api.ChatColor;
|
||||||
|
@ -9,8 +9,8 @@ import me.filoghost.fcommons.command.sub.SubCommandContext;
|
|||||||
import me.filoghost.fcommons.command.validation.CommandException;
|
import me.filoghost.fcommons.command.validation.CommandException;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramLine;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramLine;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
||||||
|
@ -11,8 +11,8 @@ import me.filoghost.fcommons.command.validation.CommandException;
|
|||||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
|
@ -11,10 +11,6 @@ import me.filoghost.fcommons.command.validation.CommandException;
|
|||||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||||
import me.filoghost.fcommons.logging.Log;
|
import me.filoghost.fcommons.logging.Log;
|
||||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||||
import me.filoghost.holographicdisplays.plugin.image.ImageMessage;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.image.ImageReadException;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.image.ImageReader;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.image.ImageTooWideException;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
@ -22,6 +18,10 @@ import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
|||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalTextLine;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalTextLine;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.image.ImageMessage;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.image.ImageReadException;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.image.ImageReader;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.image.ImageTooWideException;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
package me.filoghost.holographicdisplays.plugin.disk;
|
package me.filoghost.holographicdisplays.plugin.disk;
|
||||||
|
|
||||||
import me.filoghost.fcommons.config.Config;
|
import me.filoghost.fcommons.config.Config;
|
||||||
import me.filoghost.fcommons.config.mapped.Path;
|
|
||||||
import me.filoghost.fcommons.config.mapped.MappedConfig;
|
import me.filoghost.fcommons.config.mapped.MappedConfig;
|
||||||
|
import me.filoghost.fcommons.config.mapped.Path;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -7,10 +7,10 @@ package me.filoghost.holographicdisplays.plugin.disk;
|
|||||||
|
|
||||||
import me.filoghost.fcommons.MaterialsHelper;
|
import me.filoghost.fcommons.MaterialsHelper;
|
||||||
import me.filoghost.fcommons.Strings;
|
import me.filoghost.fcommons.Strings;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParseException;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParser;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramLine;
|
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramLine;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParseException;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParser;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
@ -8,10 +8,10 @@ package me.filoghost.holographicdisplays.plugin.hologram.api;
|
|||||||
import me.filoghost.fcommons.Preconditions;
|
import me.filoghost.fcommons.Preconditions;
|
||||||
import me.filoghost.holographicdisplays.api.Hologram;
|
import me.filoghost.holographicdisplays.api.Hologram;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramAdapter;
|
import me.filoghost.holographicdisplays.plugin.api.v2.V2HologramAdapter;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologram;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
@ -7,8 +7,8 @@ package me.filoghost.holographicdisplays.plugin.hologram.api;
|
|||||||
|
|
||||||
import me.filoghost.holographicdisplays.api.Hologram;
|
import me.filoghost.holographicdisplays.api.Hologram;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologramManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologramManager;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
|
@ -7,9 +7,9 @@ package me.filoghost.holographicdisplays.plugin.hologram.api;
|
|||||||
|
|
||||||
import me.filoghost.fcommons.Preconditions;
|
import me.filoghost.fcommons.Preconditions;
|
||||||
import me.filoghost.holographicdisplays.api.VisibilitySettings;
|
import me.filoghost.holographicdisplays.api.VisibilitySettings;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.ProtocolLibHook;
|
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.api.v2.V2VisibilityManagerAdapter;
|
import me.filoghost.holographicdisplays.plugin.api.v2.V2VisibilityManagerAdapter;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.ProtocolLibHook;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
@ -9,8 +9,8 @@ import me.filoghost.fcommons.Preconditions;
|
|||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
package me.filoghost.holographicdisplays.plugin.hologram.internal;
|
package me.filoghost.holographicdisplays.plugin.hologram.internal;
|
||||||
|
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologram;
|
import me.filoghost.holographicdisplays.plugin.hologram.base.BaseHologram;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
@ -8,9 +8,7 @@ package me.filoghost.holographicdisplays.plugin.image;
|
|||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.*;
|
||||||
import java.awt.Graphics2D;
|
|
||||||
import java.awt.Image;
|
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -15,10 +15,10 @@ import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTIntArray;
|
|||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTList;
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTList;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLong;
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLong;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLongArray;
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLongArray;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTShort;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTString;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTTag;
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTTag;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTType;
|
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTType;
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTString;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTShort;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
package me.filoghost.holographicdisplays.plugin.listener;
|
package me.filoghost.holographicdisplays.plugin.listener;
|
||||||
|
|
||||||
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardTouchableLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardTouchableLine;
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.NMSManager;
|
||||||
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSEntity;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
@ -7,11 +7,11 @@ package me.filoghost.holographicdisplays.plugin.placeholder.internal;
|
|||||||
|
|
||||||
import me.filoghost.fcommons.config.exception.ConfigSaveException;
|
import me.filoghost.fcommons.config.exception.ConfigSaveException;
|
||||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
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.common.DebugLogger;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.TextFormatter;
|
import me.filoghost.holographicdisplays.plugin.disk.TextFormatter;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.Placeholder;
|
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
|
@ -7,10 +7,10 @@ package me.filoghost.holographicdisplays.plugin.placeholder.internal;
|
|||||||
|
|
||||||
import me.filoghost.fcommons.collection.CollectionUtils;
|
import me.filoghost.fcommons.collection.CollectionUtils;
|
||||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker;
|
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker;
|
||||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.ServerInfo;
|
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.ServerInfo;
|
||||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
|
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
package me.filoghost.holographicdisplays.plugin.placeholder.registry;
|
package me.filoghost.holographicdisplays.plugin.placeholder.registry;
|
||||||
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PluginName;
|
import me.filoghost.holographicdisplays.plugin.placeholder.PlaceholderException;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.StandardPlaceholder;
|
import me.filoghost.holographicdisplays.plugin.placeholder.StandardPlaceholder;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderIdentifier;
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderIdentifier;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.PlaceholderException;
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PluginName;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
@ -8,15 +8,15 @@ package me.filoghost.holographicdisplays.plugin.placeholder.registry;
|
|||||||
import com.google.common.collect.HashBasedTable;
|
import com.google.common.collect.HashBasedTable;
|
||||||
import com.google.common.collect.Iterables;
|
import com.google.common.collect.Iterables;
|
||||||
import com.google.common.collect.Table;
|
import com.google.common.collect.Table;
|
||||||
|
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholder;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholderFactory;
|
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholderFactory;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholderReplacer;
|
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholderReplacer;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.Placeholder;
|
import me.filoghost.holographicdisplays.api.placeholder.Placeholder;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderFactory;
|
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderFactory;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
||||||
import me.filoghost.holographicdisplays.api.placeholder.IndividualPlaceholder;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PluginName;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderIdentifier;
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderIdentifier;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderOccurrence;
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderOccurrence;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PluginName;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ package me.filoghost.holographicdisplays.plugin.placeholder.tracking;
|
|||||||
|
|
||||||
import me.filoghost.holographicdisplays.common.hologram.StandardTextLine;
|
import me.filoghost.holographicdisplays.common.hologram.StandardTextLine;
|
||||||
import me.filoghost.holographicdisplays.common.nms.entity.NMSArmorStand;
|
import me.filoghost.holographicdisplays.common.nms.entity.NMSArmorStand;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.StringWithPlaceholders;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderReplaceFunction;
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderReplaceFunction;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.StringWithPlaceholders;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
public class TrackedLine {
|
public class TrackedLine {
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
*/
|
*/
|
||||||
package me.filoghost.holographicdisplays.plugin.placeholder.parsing;
|
package me.filoghost.holographicdisplays.plugin.placeholder.parsing;
|
||||||
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.PlaceholderOccurrence;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.parsing.StringWithPlaceholders;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.params.ParameterizedTest;
|
import org.junit.jupiter.params.ParameterizedTest;
|
||||||
import org.junit.jupiter.params.provider.Arguments;
|
import org.junit.jupiter.params.provider.Arguments;
|
||||||
|
Loading…
Reference in New Issue
Block a user