reformatted all src files (#141)

This commit is contained in:
YoungOnion
2022-09-17 05:08:02 -06:00
committed by GitHub
parent 3328bfcda2
commit 9011273229
1056 changed files with 88127 additions and 110597 deletions
@@ -22,17 +22,15 @@ package appeng.crafting;
import appeng.api.storage.data.IAEItemStack;
public class CraftingCalculationFailure extends RuntimeException
{
public class CraftingCalculationFailure extends RuntimeException {
private static final long serialVersionUID = 654603652836724823L;
private static final long serialVersionUID = 654603652836724823L;
private final IAEItemStack missing;
private final IAEItemStack missing;
public CraftingCalculationFailure( final IAEItemStack what, final long howMany )
{
super( "this should have been caught!" );
this.missing = what.copy();
this.missing.setStackSize( howMany );
}
public CraftingCalculationFailure(final IAEItemStack what, final long howMany) {
super("this should have been caught!");
this.missing = what.copy();
this.missing.setStackSize(howMany);
}
}