Fortify ItemLists.

This commit is contained in:
AlgorithmX2
2014-02-21 14:36:40 -06:00
parent eb15bd3a68
commit cf6b0986fc
23 changed files with 93 additions and 66 deletions
+8 -2
View File
@@ -34,9 +34,15 @@ public class ApiStorage implements IStorageHelper
}
@Override
public IItemList createItemList()
public IItemList<IAEItemStack> createItemList()
{
return new ItemList();
return new ItemList( IAEItemStack.class);
}
@Override
public IItemList<IAEFluidStack> createFluidList()
{
return new ItemList( IAEFluidStack.class);
}
@Override