From d4eef7747429e2117e31c48b558a4d645c07f2f9 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sun, 11 Jul 2021 12:26:48 +1000 Subject: [PATCH] SPIGOT-6637: Revert "#636: Add FurnaceStartSmeltEvent" This reverts commit 09f5cdf4f8b6c2baee7eea1ece5e97026b435f2c. By: md_5 --- .../inventory/FurnaceStartSmeltEvent.java | 71 ------------------- 1 file changed, 71 deletions(-) delete mode 100644 paper-api/src/main/java/org/bukkit/event/inventory/FurnaceStartSmeltEvent.java diff --git a/paper-api/src/main/java/org/bukkit/event/inventory/FurnaceStartSmeltEvent.java b/paper-api/src/main/java/org/bukkit/event/inventory/FurnaceStartSmeltEvent.java deleted file mode 100644 index 9303cc67d1..0000000000 --- a/paper-api/src/main/java/org/bukkit/event/inventory/FurnaceStartSmeltEvent.java +++ /dev/null @@ -1,71 +0,0 @@ -package org.bukkit.event.inventory; - -import org.bukkit.block.Block; -import org.bukkit.event.HandlerList; -import org.bukkit.event.block.BlockEvent; -import org.bukkit.inventory.FurnaceRecipe; -import org.bukkit.inventory.ItemStack; -import org.jetbrains.annotations.NotNull; - -public class FurnaceStartSmeltEvent extends BlockEvent { - private static final HandlerList handlers = new HandlerList(); - private final ItemStack source; - private final FurnaceRecipe recipe; - private int totalCookTime; - - public FurnaceStartSmeltEvent(@NotNull final Block furnace, @NotNull ItemStack source, @NotNull final FurnaceRecipe recipe) { - super(furnace); - this.source = source; - this.recipe = recipe; - this.totalCookTime = recipe.getCookingTime(); - } - - /** - * Gets the source ItemStack for this event - * - * @return the source ItemStack - */ - @NotNull - public ItemStack getSource() { - return source; - } - - /** - * Gets the FurnaceRecipe associated with this event - * - * @return the FurnaceRecipe being cooked - */ - @NotNull - public FurnaceRecipe getRecipe() { - return recipe; - } - - /** - * Gets the total cook time associated with this event - * - * @return the total cook time - */ - public int getTotalCookTime() { - return totalCookTime; - } - - /** - * Sets the total cook time for this event - * - * @param cookTime the new total cook time - */ - public void setTotalCookTime(int cookTime) { - this.totalCookTime = cookTime; - } - - @NotNull - @Override - public HandlerList getHandlers() { - return handlers; - } - - @NotNull - public static HandlerList getHandlerList() { - return handlers; - } -}