Merge pull request #1425 from thatsIch/e-weaker-collection-type

Use weaker collection types
This commit is contained in:
thatsIch
2015-05-09 15:57:57 +02:00
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 com.google.common.collect.ImmutableList;
@@ -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 )
{