From 6b76b63ba72c60380e23bc698e18fecc167399ff Mon Sep 17 00:00:00 2001 From: AEnterprise Date: Wed, 10 Sep 2014 14:56:17 +0200 Subject: [PATCH] fix style --- api/buildcraft/api/events/BlockInteractionEvent.java | 7 ++++--- api/buildcraft/api/events/BlockPlacedDownEvent.java | 8 +++++--- api/buildcraft/api/events/PipePlacedEvent.java | 5 +++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/api/buildcraft/api/events/BlockInteractionEvent.java b/api/buildcraft/api/events/BlockInteractionEvent.java index 7b78896b..0c1f938c 100644 --- a/api/buildcraft/api/events/BlockInteractionEvent.java +++ b/api/buildcraft/api/events/BlockInteractionEvent.java @@ -1,16 +1,17 @@ package buildcraft.api.events; +import net.minecraft.block.Block; +import net.minecraft.entity.player.EntityPlayer; + import cpw.mods.fml.common.eventhandler.Cancelable; import cpw.mods.fml.common.eventhandler.Event; -import net.minecraft.block.Block; -import net.minecraft.entity.player.EntityPlayer; @Cancelable public class BlockInteractionEvent extends Event { public EntityPlayer player; public Block block; - public BlockInteractionEvent(EntityPlayer player, Block block){ + public BlockInteractionEvent(EntityPlayer player, Block block) { this.player = player; this.block = block; } diff --git a/api/buildcraft/api/events/BlockPlacedDownEvent.java b/api/buildcraft/api/events/BlockPlacedDownEvent.java index 4c3b2e5b..d63932f5 100644 --- a/api/buildcraft/api/events/BlockPlacedDownEvent.java +++ b/api/buildcraft/api/events/BlockPlacedDownEvent.java @@ -1,16 +1,18 @@ package buildcraft.api.events; +import net.minecraft.block.Block; +import net.minecraft.entity.player.EntityPlayer; + import cpw.mods.fml.common.eventhandler.Cancelable; import cpw.mods.fml.common.eventhandler.Event; -import net.minecraft.block.Block; -import net.minecraft.entity.player.EntityPlayer; + @Cancelable public class BlockPlacedDownEvent extends Event { public EntityPlayer player; public Block block; - public BlockPlacedDownEvent(EntityPlayer player, Block block){ + public BlockPlacedDownEvent(EntityPlayer player, Block block) { this.player = player; this.block = block; } diff --git a/api/buildcraft/api/events/PipePlacedEvent.java b/api/buildcraft/api/events/PipePlacedEvent.java index d3abadda..720a4c09 100644 --- a/api/buildcraft/api/events/PipePlacedEvent.java +++ b/api/buildcraft/api/events/PipePlacedEvent.java @@ -1,13 +1,14 @@ package buildcraft.api.events; -import cpw.mods.fml.common.eventhandler.Event; import net.minecraft.entity.player.EntityPlayer; +import cpw.mods.fml.common.eventhandler.Event; + public class PipePlacedEvent extends Event { public EntityPlayer player; public String pipeType; - public PipePlacedEvent(EntityPlayer player, String pipeType){ + public PipePlacedEvent(EntityPlayer player, String pipeType) { this.player = player; this.pipeType = pipeType; }