diff --git a/eco-api/src/main/java/com/willfp/eco/core/items/args/ColorArgParser.java b/eco-api/src/main/java/com/willfp/eco/core/items/args/ColorArgParser.java deleted file mode 100644 index 81e1a082..00000000 --- a/eco-api/src/main/java/com/willfp/eco/core/items/args/ColorArgParser.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.willfp.eco.core.items.args; - -import org.bukkit.Bukkit; -import org.bukkit.inventory.ItemStack; -import org.bukkit.inventory.meta.ItemMeta; -import org.jetbrains.annotations.ApiStatus; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.util.function.Predicate; - -/** - * Parse leather armor colors. - * - * @deprecated Moved to internals. - */ -@Deprecated(since = "6.16.0", forRemoval = true) -@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2") -public class ColorArgParser implements LookupArgParser { - /** - * Instantiate arg parser. - */ - public ColorArgParser() { - Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!"); - } - - @Override - public @Nullable Predicate parseArguments(@NotNull final String[] args, - @NotNull final ItemMeta meta) { - return null; - } - - static { - Bukkit.getLogger().severe("Referencing a class marked for removal! (" + ColorArgParser.class.getName() + "), this will throw an error in the next release!"); - } -} diff --git a/eco-api/src/main/java/com/willfp/eco/core/items/args/CustomModelDataArgParser.java b/eco-api/src/main/java/com/willfp/eco/core/items/args/CustomModelDataArgParser.java deleted file mode 100644 index 615f9169..00000000 --- a/eco-api/src/main/java/com/willfp/eco/core/items/args/CustomModelDataArgParser.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.willfp.eco.core.items.args; - -import org.bukkit.Bukkit; -import org.bukkit.inventory.ItemStack; -import org.bukkit.inventory.meta.ItemMeta; -import org.jetbrains.annotations.ApiStatus; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.util.function.Predicate; - -/** - * Parse custom model data. - * - * @deprecated Moved to internals. - */ -@Deprecated(since = "6.16.0", forRemoval = true) -@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2") -public class CustomModelDataArgParser implements LookupArgParser { - /** - * Instantiate arg parser. - */ - public CustomModelDataArgParser() { - Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!"); - } - - @Override - public @Nullable Predicate parseArguments(@NotNull final String[] args, - @NotNull final ItemMeta meta) { - return null; - } - - static { - Bukkit.getLogger().severe("Referencing a class marked for removal! (" + CustomModelDataArgParser.class.getName() + "), this will throw an error in the next release!"); - } -} diff --git a/eco-api/src/main/java/com/willfp/eco/core/items/args/EnchantmentArgParser.java b/eco-api/src/main/java/com/willfp/eco/core/items/args/EnchantmentArgParser.java deleted file mode 100644 index 2d3fb984..00000000 --- a/eco-api/src/main/java/com/willfp/eco/core/items/args/EnchantmentArgParser.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.willfp.eco.core.items.args; - -import org.bukkit.Bukkit; -import org.bukkit.inventory.ItemStack; -import org.bukkit.inventory.meta.ItemMeta; -import org.jetbrains.annotations.ApiStatus; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.util.function.Predicate; - -/** - * Parses enchantment arguments. - * - * @deprecated Moved to internals. - */ -@Deprecated(since = "6.16.0", forRemoval = true) -@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2") -public class EnchantmentArgParser implements LookupArgParser { - /** - * Instantiate arg parser. - */ - public EnchantmentArgParser() { - Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!"); - } - - @Override - public @Nullable Predicate parseArguments(@NotNull final String[] args, - @NotNull final ItemMeta meta) { - return null; - } - - static { - Bukkit.getLogger().severe("Referencing a class marked for removal! (" + EnchantmentArgParser.class.getName() + "), this will throw an error in the next release!"); - } -} diff --git a/eco-api/src/main/java/com/willfp/eco/core/items/args/TextureArgParser.java b/eco-api/src/main/java/com/willfp/eco/core/items/args/TextureArgParser.java deleted file mode 100644 index 552f91fc..00000000 --- a/eco-api/src/main/java/com/willfp/eco/core/items/args/TextureArgParser.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.willfp.eco.core.items.args; - -import org.bukkit.Bukkit; -import org.bukkit.inventory.ItemStack; -import org.bukkit.inventory.meta.ItemMeta; -import org.jetbrains.annotations.ApiStatus; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -import java.util.function.Predicate; - -/** - * Parse skull textures. - * - * @deprecated Moved to internals. - */ -@Deprecated(since = "6.16.0", forRemoval = true) -@ApiStatus.ScheduledForRemoval(inVersion = "6.18.2") -public class TextureArgParser implements LookupArgParser { - /** - * Instantiate arg parser. - */ - public TextureArgParser() { - Bukkit.getLogger().severe("Instantiation of class marked for removal! (" + this.getClass().getName() + "), this will throw an error in a future release!"); - } - - @Override - public @Nullable Predicate parseArguments(@NotNull final String[] args, - @NotNull final ItemMeta meta) { - return null; - } - - static { - Bukkit.getLogger().severe("Referencing a class marked for removal! (" + TextureArgParser.class.getName() + "), this will throw an error in the next release!"); - } -}