From 9d0e7bf6d611268b3a1f7273c01becb0222509fa Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Thu, 24 Aug 2023 15:52:51 -0500 Subject: [PATCH] Fix compile error --- server/src/main/java/dev/plex/command/impl/WorldCMD.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/src/main/java/dev/plex/command/impl/WorldCMD.java b/server/src/main/java/dev/plex/command/impl/WorldCMD.java index 9db4939..52ea663 100644 --- a/server/src/main/java/dev/plex/command/impl/WorldCMD.java +++ b/server/src/main/java/dev/plex/command/impl/WorldCMD.java @@ -1,14 +1,13 @@ package dev.plex.command.impl; +import com.google.common.collect.Lists; import dev.plex.Plex; import dev.plex.command.PlexCommand; import dev.plex.command.annotation.CommandParameters; import dev.plex.command.annotation.CommandPermissions; import dev.plex.command.source.RequiredCommandSource; import dev.plex.rank.enums.Rank; -import dev.plex.util.PlexLog; import net.kyori.adventure.text.Component; -import org.apache.commons.compress.utils.Lists; import org.bukkit.Bukkit; import org.bukkit.World; import org.bukkit.command.CommandSender; @@ -16,7 +15,6 @@ import org.bukkit.entity.Player; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -import java.util.Arrays; import java.util.List; import java.util.UUID; import java.util.regex.Pattern;