Merge pull request #1425 from thatsIch/e-weaker-collection-type
Use weaker collection types
This commit is contained in:
@@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user