Deleted redundant null checks
This commit is contained in:
@@ -364,7 +364,7 @@ public class DualityInterface implements IGridTickable, ISegmentedInventory, ISt
|
||||
return;
|
||||
}
|
||||
}
|
||||
else if ( Stored != null ) // dispose!
|
||||
else // Stored != null; dispose!
|
||||
{
|
||||
IAEItemStack work = AEApi.instance().storage().createItemStack( Stored );
|
||||
requireWork[slot] = work.setStackSize( -work.getStackSize() );
|
||||
|
||||
@@ -74,8 +74,6 @@ public class MultiCraftingTracker
|
||||
{
|
||||
if ( craftingJob.isDone() )
|
||||
job = craftingJob.get();
|
||||
else if ( craftingJob.isCancelled() )
|
||||
job = null;
|
||||
|
||||
if ( job != null )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user