remove trailing whitespaces

This commit is contained in:
yueh
2015-02-03 12:04:13 +01:00
parent ef3cb0a455
commit b18addbf37
303 changed files with 1526 additions and 1526 deletions
@@ -237,11 +237,11 @@ public class AdaptorIInventory extends InventoryAdaptor
/**
* Adds an {@link ItemStack} to the adapted {@link IInventory}.
*
*
* It respects the inventories stack limit, which can result in not all items added and some left ones are returned.
* The ItemStack next is required for inventories, which will fail on isItemValidForSlot() for stacksizes larger
* than the limit.
*
*
* @param itemsToAdd itemStack to add to the inventory
* @param modulate true to modulate, false for simulate
*
@@ -31,12 +31,12 @@ public class AdaptorPlayerInventory implements IInventory
public AdaptorPlayerInventory(IInventory playerInv, boolean swap)
{
if ( swap )
this.src = new WrapperChainedInventory( new WrapperInventoryRange( playerInv, 9, this.size -9, false ), new WrapperInventoryRange( playerInv, 0, 9, false ) );
else
this.src = playerInv;
}
@Override