diff options
author | Andrey <timeconqueror999@gmail.com> | 2021-08-03 21:03:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 21:03:36 +0300 |
commit | 32cf7e56beb5b89d5c39714296b6b16e74959dbb (patch) | |
tree | 35285608cb5afdcc9adde893d40bb40bcd6e3116 /src/main/java/gregtech/api/metatileentity | |
parent | 09205a9b2a03b7fda645c2a095854e6e63a3489d (diff) | |
parent | 93d5b74820925ecbc8b105d7c1c42be1f2c9d217 (diff) | |
download | GT5-Unofficial-32cf7e56beb5b89d5c39714296b6b16e74959dbb.tar.gz GT5-Unofficial-32cf7e56beb5b89d5c39714296b6b16e74959dbb.tar.bz2 GT5-Unofficial-32cf7e56beb5b89d5c39714296b6b16e74959dbb.zip |
Merge pull request #623 from GTNewHorizons/constr-remove
Removed excess constructor with the same parameters
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_OutputBus.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_OutputBus.java b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_OutputBus.java index 86e95b2234..7f5970d184 100644 --- a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_OutputBus.java +++ b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_OutputBus.java @@ -44,10 +44,6 @@ public class GT_MetaTileEntity_Hatch_OutputBus extends GT_MetaTileEntity_Hatch { super(aName, aTier, getSlots(aTier), aDescription, aTextures); } - public GT_MetaTileEntity_Hatch_OutputBus(String aName, int aTier, String[] aDescription, int inventorySize, ITexture[][][] aTextures) { - super(aName, aTier, inventorySize, aDescription, aTextures); - } - public GT_MetaTileEntity_Hatch_OutputBus(String name, int tier, int slots, String[] description, ITexture[][][] textures) { super(name, tier, slots, description, textures); } |