1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

[CI skip] Removed deprecated method

This commit is contained in:
TheBusyBiscuit 2020-02-09 00:30:31 +01:00
parent be43f825a9
commit cefa85f451

View File

@ -21,7 +21,6 @@ import io.github.thebusybiscuit.cscorelib2.collections.OptionalMap;
import io.github.thebusybiscuit.cscorelib2.inventory.ItemUtils;
import io.github.thebusybiscuit.slimefun4.api.items.Placeable;
import io.github.thebusybiscuit.slimefun4.core.SlimefunRegistry;
import io.github.thebusybiscuit.slimefun4.core.attributes.Radioactive;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Lists.SlimefunItems;
@ -457,22 +456,6 @@ public class SlimefunItem implements Placeable {
return SlimefunPlugin.getRegistry().getItemHandlers().computeIfAbsent(identifier, c -> new HashSet<>());
}
/**
* This method marks the item as radioactive.
*
* @deprecated The Interface {@link Radioactive} should be used instead in the future.
*
* @param item The {@link ItemStack} to set as radioactive
*/
@Deprecated
public static void setRadioactive(ItemStack item) {
SlimefunItem sfItem = getByItem(item);
if (sfItem != null) {
SlimefunPlugin.getRegistry().getRadioactiveItems().add(sfItem);
}
}
public static ItemStack getItem(String id) {
SlimefunItem item = getByID(id);
return item != null ? item.getItem(): null;