Resolved some unchecked Types

This commit is contained in:
thatsIch
2014-09-28 22:20:14 +02:00
parent a745e00115
commit f1ffbf08a2
109 changed files with 206 additions and 206 deletions
@@ -38,7 +38,7 @@ public class WrapperChainedInventory implements IInventory
{
if ( l.size() > 1 )
{
List<IInventory> newOrder = new ArrayList( l.size() );
List<IInventory> newOrder = new ArrayList<IInventory>( l.size() );
newOrder.add( l.get( l.size() - 1 ) );
for (int x = 0; x < l.size() - 1; x++)
newOrder.add( l.get( x ) );