diff --git a/src/main/java/tconstruct/library/TConstructRegistry.java b/src/main/java/tconstruct/library/TConstructRegistry.java index 85f9dc89bb..493e692c78 100644 --- a/src/main/java/tconstruct/library/TConstructRegistry.java +++ b/src/main/java/tconstruct/library/TConstructRegistry.java @@ -1,6 +1,5 @@ package tconstruct.library; -import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; diff --git a/src/main/java/tconstruct/util/config/PHConstruct.java b/src/main/java/tconstruct/util/config/PHConstruct.java index 4edac74b29..578b1002f4 100644 --- a/src/main/java/tconstruct/util/config/PHConstruct.java +++ b/src/main/java/tconstruct/util/config/PHConstruct.java @@ -315,8 +315,11 @@ public static void initProps(File location) { new String[] { "wanion.avaritiaddons.block.chest.infinity.TileEntityInfinityChest" }) .getStringList()); - metalCastFluidTypeName = config.get("CrossmodInteractions", "Metal cast FluidType", "AluminumBrass", "For pack maintainers. Defines the LiquidType used to create metal casts.") - .getString(); + metalCastFluidTypeName = config.get( + "CrossmodInteractions", + "Metal cast FluidType", + "AluminumBrass", + "For pack maintainers. Defines the LiquidType used to create metal casts.").getString(); /* Save the configuration file only if it has changed */ if (config.hasChanged()) config.save();