Use weaker collection types

This commit is contained in:
thatsIch
2015-05-09 00:04:44 +02:00
parent b8f22202d4
commit 16c0fbe3c1
18 changed files with 31 additions and 26 deletions
@@ -22,6 +22,7 @@ package appeng.util.inv;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
@@ -35,7 +36,7 @@ public class WrapperChainedInventory implements IInventory
int fullSize = 0;
private List<IInventory> l;
private HashMap<Integer, InvOffset> offsets;
private Map<Integer, InvOffset> offsets;
public WrapperChainedInventory( IInventory... inventories )
{