Merge pull request #1425 from thatsIch/e-weaker-collection-type
Use weaker collection types
This commit is contained in:
@@ -480,7 +480,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
|
||||
* @param drops drops of tile entity
|
||||
*/
|
||||
@Override
|
||||
public void getDrops( World w, int x, int y, int z, ArrayList<ItemStack> drops )
|
||||
public void getDrops( World w, int x, int y, int z, List<ItemStack> drops )
|
||||
{
|
||||
if( this instanceof IInventory )
|
||||
{
|
||||
@@ -497,7 +497,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
|
||||
}
|
||||
}
|
||||
|
||||
public void getNoDrops( World w, int x, int y, int z, ArrayList<ItemStack> drops )
|
||||
public void getNoDrops( World w, int x, int y, int z, List<ItemStack> drops )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user