From 0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Mon, 30 Jan 2023 10:56:42 -0800 Subject: [ci skip] spotlessApply with the new settings --- .../java/gregtech/api/events/BlockScanningEvent.java | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'src/main/java/gregtech/api/events') diff --git a/src/main/java/gregtech/api/events/BlockScanningEvent.java b/src/main/java/gregtech/api/events/BlockScanningEvent.java index 85d2e3e07a..9d7500a8b0 100644 --- a/src/main/java/gregtech/api/events/BlockScanningEvent.java +++ b/src/main/java/gregtech/api/events/BlockScanningEvent.java @@ -1,13 +1,15 @@ package gregtech.api.events; -import cpw.mods.fml.common.eventhandler.Cancelable; import java.util.ArrayList; + import net.minecraft.block.Block; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import net.minecraftforge.event.world.WorldEvent; +import cpw.mods.fml.common.eventhandler.Cancelable; + @Cancelable public class BlockScanningEvent extends WorldEvent { @@ -24,19 +26,8 @@ public class BlockScanningEvent extends WorldEvent { */ public int mEUCost = 0; - public BlockScanningEvent( - World aWorld, - EntityPlayer aPlayer, - int aX, - int aY, - int aZ, - byte aSide, - int aScanLevel, - Block aBlock, - TileEntity aTileEntity, - ArrayList aList, - float aClickX, - float aClickY, + public BlockScanningEvent(World aWorld, EntityPlayer aPlayer, int aX, int aY, int aZ, byte aSide, int aScanLevel, + Block aBlock, TileEntity aTileEntity, ArrayList aList, float aClickX, float aClickY, float aClickZ) { super(aWorld); mPlayer = aPlayer; -- cgit