Skip to content

Commit

Permalink
spobl
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Jul 6, 2024
1 parent f15a501 commit 04ad422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/main/java/gregtech/api/DualHandler.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package gregtech.api;

import gregtech.api.capability.IMultipleTankHandler;
import gregtech.api.capability.INotifiableHandler;
import gregtech.api.metatileentity.MetaTileEntity;

import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
Expand All @@ -13,7 +11,6 @@

import org.jetbrains.annotations.NotNull;

import java.util.ArrayList;
import java.util.List;

public class DualHandler implements IItemHandlerModifiable, IFluidTank, IMultipleTankHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import org.jetbrains.annotations.Nullable;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public abstract class RecipeMapMultiblockController extends MultiblockWithDisplayBase implements IDataInfoProvider,
Expand Down Expand Up @@ -119,7 +118,8 @@ public boolean isActive() {
}

protected void initializeAbilities() {
this.inputInventory = new ItemHandlerList(getAbilities(MultiblockAbility.IMPORT_ITEMS, MultiblockAbility.IMPORT_DUAL));
this.inputInventory = new ItemHandlerList(
getAbilities(MultiblockAbility.IMPORT_ITEMS, MultiblockAbility.IMPORT_DUAL));
this.inputFluidInventory = new FluidTankList(allowSameFluidFillForOutputs(),
getAbilities(MultiblockAbility.IMPORT_FLUIDS));
this.outputInventory = new ItemHandlerList(getAbilities(MultiblockAbility.EXPORT_ITEMS));
Expand Down

0 comments on commit 04ad422

Please sign in to comment.