diff --git a/api/buildcraft/api/blueprints/Schematic.java b/api/buildcraft/api/blueprints/Schematic.java index 32fc99e4..8708f562 100755 --- a/api/buildcraft/api/blueprints/Schematic.java +++ b/api/buildcraft/api/blueprints/Schematic.java @@ -270,7 +270,6 @@ public abstract class Schematic { /** * Return the building permission for blueprint containing this schematic. - * @return */ public BuildingPermission getBuildingPermission () { return BuildingPermission.ALL; diff --git a/api/buildcraft/api/core/IIconProvider.java b/api/buildcraft/api/core/IIconProvider.java index 73d9d62e..2734415d 100644 --- a/api/buildcraft/api/core/IIconProvider.java +++ b/api/buildcraft/api/core/IIconProvider.java @@ -18,7 +18,6 @@ public interface IIconProvider { /** * @param iconIndex - * @return */ @SideOnly(Side.CLIENT) IIcon getIcon(int iconIndex); diff --git a/api/buildcraft/api/fuels/IronEngineCoolant.java b/api/buildcraft/api/fuels/IronEngineCoolant.java index 5df3dbed..78cf315b 100644 --- a/api/buildcraft/api/fuels/IronEngineCoolant.java +++ b/api/buildcraft/api/fuels/IronEngineCoolant.java @@ -71,11 +71,11 @@ public final class IronEngineCoolant { } /** - * Adds a solid coolant like Ice Blocks. The FluidStack must contain a registered - * Coolant Fluid or nothing will happen. You do not need to call this for - * Fluid Containers. - * - * @param data.stack + * Adds a solid coolant like Ice Blocks. The FluidStack must contain a + * registered Coolant Fluid or nothing will happen. You do not need to call + * this for Fluid Containers. + * + * @param item * @param coolant */ public static void addCoolant(final Item item, final int metadata, final FluidStack coolant) { diff --git a/api/buildcraft/api/power/IPowerReceptor.java b/api/buildcraft/api/power/IPowerReceptor.java index 1c5f30e1..17dca98c 100644 --- a/api/buildcraft/api/power/IPowerReceptor.java +++ b/api/buildcraft/api/power/IPowerReceptor.java @@ -28,7 +28,6 @@ public interface IPowerReceptor { * engines to eventually explode. * * @param side - * @return */ PowerHandler.PowerReceiver getPowerReceiver(ForgeDirection side); diff --git a/api/buildcraft/api/power/PowerHandler.java b/api/buildcraft/api/power/PowerHandler.java index ee983df5..f1d63562 100644 --- a/api/buildcraft/api/power/PowerHandler.java +++ b/api/buildcraft/api/power/PowerHandler.java @@ -95,7 +95,6 @@ public final class PowerHandler { * @param powerHandler the PowerHandler requesting the perdition update * @param current the current stored energy * @param ticksPassed ticks since the last time this function was called - * @return */ public double applyPerdition(PowerHandler powerHandler, double current, long ticksPassed) { double newPower = current - powerLoss * ticksPassed; @@ -425,8 +424,6 @@ public final class PowerHandler { /** * The amount of power that this PowerHandler currently needs. - * - * @return */ public double powerRequest() { update(); diff --git a/api/buildcraft/api/recipes/IAssemblyRecipeManager.java b/api/buildcraft/api/recipes/IAssemblyRecipeManager.java index 202e234f..bbd02409 100644 --- a/api/buildcraft/api/recipes/IAssemblyRecipeManager.java +++ b/api/buildcraft/api/recipes/IAssemblyRecipeManager.java @@ -25,11 +25,14 @@ public interface IAssemblyRecipeManager { /** * Add an Assembly Table recipe. - * - * @param input Object... containing either an ItemStack, or a paired string - * and integer(ex: "dyeBlue", 1) - * @param energy MJ cost to produce - * @param output resulting ItemStack + * + * @param input + * Object... containing either an ItemStack, or a paired string + * and integer(ex: "dyeBlue", 1) + * @param energyCost + * MJ cost to produce + * @param output + * resulting ItemStack */ void addRecipe(double energyCost, ItemStack output, Object... input); diff --git a/api/buildcraft/api/transport/IPipeTile.java b/api/buildcraft/api/transport/IPipeTile.java index 22f287f2..94516c8f 100644 --- a/api/buildcraft/api/transport/IPipeTile.java +++ b/api/buildcraft/api/transport/IPipeTile.java @@ -9,6 +9,7 @@ package buildcraft.api.transport; import net.minecraft.item.ItemStack; + import net.minecraftforge.common.util.ForgeDirection; public interface IPipeTile { @@ -34,8 +35,8 @@ public interface IPipeTile { /** * True if the pipe is connected to the block/pipe in the specific direction - * - * @param wire + * + * @param with * @return true if connect */ boolean isPipeConnected(ForgeDirection with); diff --git a/common/buildcraft/core/inventory/ITransactor.java b/common/buildcraft/core/inventory/ITransactor.java index 2bdc6ff6..954d8ab6 100644 --- a/common/buildcraft/core/inventory/ITransactor.java +++ b/common/buildcraft/core/inventory/ITransactor.java @@ -32,7 +32,6 @@ public interface ITransactor { * @param filter * @param orientation * @param doRemove - * @return */ ItemStack remove(IStackFilter filter, ForgeDirection orientation, boolean doRemove); } diff --git a/common/buildcraft/core/inventory/InvUtils.java b/common/buildcraft/core/inventory/InvUtils.java index 0fe116d2..747a73bf 100644 --- a/common/buildcraft/core/inventory/InvUtils.java +++ b/common/buildcraft/core/inventory/InvUtils.java @@ -79,10 +79,11 @@ public final class InvUtils { /** * Attempts to move a single item from one inventory to another. - * + * * @param source * @param dest - * @param filer an IStackFilter to match against + * @param filter + * an IStackFilter to match against * @return null if nothing was moved, the stack moved otherwise */ public static ItemStack moveOneItem(IInventory source, ForgeDirection output, IInventory dest, ForgeDirection intput, IStackFilter filter) { diff --git a/common/buildcraft/core/utils/MatrixTranformations.java b/common/buildcraft/core/utils/MatrixTranformations.java index d9338369..b9d39ec8 100644 --- a/common/buildcraft/core/utils/MatrixTranformations.java +++ b/common/buildcraft/core/utils/MatrixTranformations.java @@ -63,7 +63,6 @@ public final class MatrixTranformations { * Clones both dimensions of a float[][] * * @param source the float[][] to deepClone - * @return */ public static float[][] deepClone(float[][] source) { float[][] target = source.clone(); diff --git a/common/buildcraft/transport/Pipe.java b/common/buildcraft/transport/Pipe.java index 49fa5a0d..c29fdeda 100644 --- a/common/buildcraft/transport/Pipe.java +++ b/common/buildcraft/transport/Pipe.java @@ -165,8 +165,6 @@ public abstract class Pipe implements IDropControlInven * Should return the textureindex used by the Pipe Item Renderer, as this is * done client-side the default implementation might not work if your * getTextureIndex(Orienations.Unknown) has logic. Then override this - * - * @return */ public int getIconIndexForItem() { return getIconIndex(ForgeDirection.UNKNOWN); diff --git a/common/buildcraft/transport/network/PacketHandlerTransport.java b/common/buildcraft/transport/network/PacketHandlerTransport.java index c218c950..add654ba 100644 --- a/common/buildcraft/transport/network/PacketHandlerTransport.java +++ b/common/buildcraft/transport/network/PacketHandlerTransport.java @@ -270,7 +270,6 @@ public class PacketHandlerTransport extends BuildCraftChannelHandler { * @param x * @param y * @param z - * @return */ private TileGenericPipe getPipe(World world, int x, int y, int z) { if (!world.blockExists(x, y, z)) {