Optimise imports to make it easier to find and replace package names

This commit is contained in:
modmuss50 2016-03-13 15:37:55 +00:00
parent 05ee9f30f4
commit 7f920b282f
191 changed files with 636 additions and 579 deletions

View file

@ -1,7 +1,5 @@
package techreborn.events;
import java.util.HashMap;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
@ -11,6 +9,8 @@ import net.minecraftforge.oredict.OreDictionary;
import reborncore.common.util.ItemUtils;
import techreborn.config.ConfigTechReborn;
import java.util.HashMap;
public class OreUnifier {
public static HashMap<String, ItemStack> oreHash = new HashMap<String, ItemStack>();

View file

@ -9,10 +9,6 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import techreborn.init.ModItems;
import techreborn.power.PowerTickEvent;
import techreborn.power.TRPowerNet;
import java.util.ArrayList;
import java.util.List;
public class TRTickHandler {