diff options
author | Spacebuilder2020 <spacebuilder2020@users.noreply.github.com> | 2022-11-11 19:42:26 -0700 |
---|---|---|
committer | Spacebuilder2020 <spacebuilder2020@users.noreply.github.com> | 2022-11-11 19:42:26 -0700 |
commit | b7af8421448ec6e3958d316a0d5e987264702c04 (patch) | |
tree | 1296f0c5d2ea9c59ff3c84a2ca9ec6450b187254 | |
parent | 49301f414ffe0485713c3f9f4cd84eecd8afcfdd (diff) | |
download | GT5-Unofficial-b7af8421448ec6e3958d316a0d5e987264702c04.tar.gz GT5-Unofficial-b7af8421448ec6e3958d316a0d5e987264702c04.tar.bz2 GT5-Unofficial-b7af8421448ec6e3958d316a0d5e987264702c04.zip |
Apply Spottless
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 373795fccf..b343371139 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -646,7 +646,9 @@ public class GTMTE_LapotronicSuperCapacitor // Output energy to TT hatches for (GT_MetaTileEntity_Hatch_DynamoMulti eDynamo : mDynamoHatchesTT) { - if (eDynamo == null || eDynamo.getBaseMetaTileEntity() == null || eDynamo.getBaseMetaTileEntity().isInvalidTileEntity()) { + if (eDynamo == null + || eDynamo.getBaseMetaTileEntity() == null + || eDynamo.getBaseMetaTileEntity().isInvalidTileEntity()) { continue; } final long power = getPowerToPush(eDynamo.maxEUOutput() * eDynamo.maxAmperesOut()); |