Removed unused imports
This commit is contained in:
parent
3e1cf7d40a
commit
1f9bfabf21
10 changed files with 0 additions and 24 deletions
|
@ -48,31 +48,26 @@ public class RollingMachineRecipe extends RebornRecipe {
|
|||
return Collections.singletonList(shapedRecipe.getOutput());
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public ItemStack getOutput() {
|
||||
return shapedRecipe.getOutput();
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public DefaultedList<Ingredient> getPreviewInputs() {
|
||||
return shapedRecipe.getPreviewInputs();
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public boolean matches(Inventory inv, World worldIn) {
|
||||
return shapedRecipe.matches((CraftingInventory) inv, worldIn);
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public ItemStack craft(Inventory inv) {
|
||||
return shapedRecipe.craft((CraftingInventory) inv);
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public boolean fits(int width, int height) {
|
||||
return shapedRecipe.fits(width, height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue