diff options
author | Jason Mitchell <mitchej@gmail.com> | 2023-01-29 11:07:19 -0800 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2023-01-29 11:07:19 -0800 |
commit | 3e18e9fff0dc5d787f68411b296feec251382069 (patch) | |
tree | 64e28a02ca615331b60c3e3c6df55a890532f1df /src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java | |
parent | eb5e2b8185d10b3ffdd8f05a203f75a6ac1f4de9 (diff) | |
download | GT5-Unofficial-3e18e9fff0dc5d787f68411b296feec251382069.tar.gz GT5-Unofficial-3e18e9fff0dc5d787f68411b296feec251382069.tar.bz2 GT5-Unofficial-3e18e9fff0dc5d787f68411b296feec251382069.zip |
[ci skip] spotlessApply with the new settings
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java b/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java index 9a597ae710..a22d58e0f9 100644 --- a/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java +++ b/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java @@ -1,5 +1,10 @@ package com.elisis.gtnhlanth; +import java.util.Arrays; +import java.util.logging.Logger; + +import net.minecraftforge.oredict.OreDictionary; + import com.elisis.gtnhlanth.common.CommonProxy; import com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool; import com.elisis.gtnhlanth.common.register.LanthItemList; @@ -9,6 +14,7 @@ import com.elisis.gtnhlanth.loader.RecipeLoader; import com.elisis.gtnhlanth.xmod.nei.IMC; import com.github.bartimaeusnek.bartworks.API.WerkstoffAdderRegistry; import com.github.bartimaeusnek.bartworks.system.material.Werkstoff; + import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.SidedProxy; @@ -18,9 +24,6 @@ import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GT_Log; -import java.util.Arrays; -import java.util.logging.Logger; -import net.minecraftforge.oredict.OreDictionary; @Mod( modid = Tags.MODID, @@ -73,9 +76,10 @@ public class GTNHLanthanides { GT_Log.out.print(Arrays.toString(Werkstoff.werkstoffNameHashMap.keySet().toArray())); GT_Log.out.print(Arrays.toString(Werkstoff.werkstoffHashMap.keySet().toArray())); - GT_Log.out.print("HMMM " - + Arrays.toString(OreDictionary.getOreIDs( - WerkstoffMaterialPool.DephosphatedSamariumConcentrate.get(OrePrefixes.dust, 1)))); + GT_Log.out.print( + "HMMM " + Arrays.toString( + OreDictionary.getOreIDs( + WerkstoffMaterialPool.DephosphatedSamariumConcentrate.get(OrePrefixes.dust, 1)))); } @EventHandler |