Skip to content

Commit

Permalink
chore: optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ybw0014 committed Jul 29, 2024
1 parent ca436c1 commit d7e34db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;

import io.github.thebusybiscuit.slimefun4.api.MinecraftVersion;
import io.github.thebusybiscuit.slimefun4.implementation.Slimefun;

import org.bukkit.ChatColor;
import org.bukkit.NamespacedKey;
import org.bukkit.attribute.Attribute;
Expand All @@ -30,6 +27,8 @@
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;

import io.github.thebusybiscuit.slimefun4.api.MinecraftVersion;
import io.github.thebusybiscuit.slimefun4.implementation.Slimefun;
import io.github.thebusybiscuit.slimefun4.utils.NumberUtils;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@

import com.google.gson.JsonObject;

import io.github.thebusybiscuit.mobcapturer.MobCapturer;
import io.github.thebusybiscuit.mobcapturer.adapters.InventoryAdapter;

import org.bukkit.ChatColor;
import org.bukkit.DyeColor;
import org.bukkit.NamespacedKey;
import org.bukkit.Registry;
import org.bukkit.entity.Wolf;
import org.bukkit.entity.Wolf.Variant;
import org.bukkit.inventory.EquipmentSlot;
import org.bukkit.inventory.ItemStack;

import io.github.thebusybiscuit.mobcapturer.adapters.InventoryAdapter;
import io.github.thebusybiscuit.slimefun4.api.MinecraftVersion;
import io.github.thebusybiscuit.slimefun4.implementation.Slimefun;
import io.papermc.paper.registry.RegistryAccess;
Expand All @@ -27,9 +27,6 @@
import net.guizhanss.guizhanlib.java.BooleanHelper;
import net.guizhanss.guizhanlib.minecraft.helper.DyeColorHelper;

import org.bukkit.inventory.EquipmentSlot;
import org.bukkit.inventory.ItemStack;

public class WolfAdapter extends AbstractTameableAdapter<Wolf> implements InventoryAdapter<Wolf> {

private final Registry wolfVariantRegistry;
Expand Down

0 comments on commit d7e34db

Please sign in to comment.