Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -42,12 +42,14 @@ public class CreativeCellInventory implements IMEInventoryHandler<IAEItemStack>
{
CellConfig cc = new CellConfig( o );
for( ItemStack is : cc )
{
if( is != null )
{
IAEItemStack i = AEItemStack.create( is );
i.setStackSize( Integer.MAX_VALUE );
this.itemListCache.add( i );
}
}
}
public static IMEInventoryHandler getCell( ItemStack o )
@@ -60,7 +62,9 @@ public class CreativeCellInventory implements IMEInventoryHandler<IAEItemStack>
{
IAEItemStack local = this.itemListCache.findPrecise( input );
if( local == null )
{
return input;
}
return null;
}
@@ -70,7 +74,9 @@ public class CreativeCellInventory implements IMEInventoryHandler<IAEItemStack>
{
IAEItemStack local = this.itemListCache.findPrecise( request );
if( local == null )
{
return null;
}
return request.copy();
}
@@ -79,7 +85,9 @@ public class CreativeCellInventory implements IMEInventoryHandler<IAEItemStack>
public IItemList<IAEItemStack> getAvailableItems( IItemList out )
{
for( IAEItemStack ais : this.itemListCache )
{
out.add( ais );
}
return out;
}