Remove deprecated methods

This commit is contained in:
raoulvdberge
2019-10-29 13:50:52 +01:00
parent f3e8183800
commit 38d87af5d6

View File

@@ -77,24 +77,6 @@ public interface ICraftingManager {
*/
ICraftingPatternChainList createPatternChainList();
/**
* @deprecated Use {@link #request(Object, ItemStack, int)}
*/
@Nullable
@Deprecated
default ICraftingTask request(ItemStack stack, int amount) {
return request(null, stack, amount);
}
/**
* @deprecated Use {@link #request(Object, FluidStack, int)}
*/
@Nullable
@Deprecated
default ICraftingTask request(FluidStack stack, int amount) {
return request(null, stack, amount);
}
/**
* Schedules a crafting task if the task isn't scheduled yet.
*