remove trailing whitespaces
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
*
|
||||
* Copyright (c) 2013 AlgorithmX2
|
||||
*
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
@@ -31,12 +31,12 @@ import appeng.api.storage.data.IAEItemStack;
|
||||
* Any item which implements this can be treated as an IMEInventory via
|
||||
* Util.getCell / Util.isCell It automatically handles the internals and NBT
|
||||
* data, which is both nice, and bad for you!
|
||||
*
|
||||
*
|
||||
* Good cause it means you don't have to do anything, bad because you have
|
||||
* little to no control over it.
|
||||
*
|
||||
*
|
||||
* The standard AE implementation only provides 1-63 Types
|
||||
*
|
||||
*
|
||||
*/
|
||||
public interface IStorageCell extends ICellWorkbenchItem
|
||||
{
|
||||
@@ -44,7 +44,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
/**
|
||||
* It wont work if the return is not a multiple of 8.
|
||||
* The limit is ({@link Integer#MAX_VALUE} + 1) / 8.
|
||||
*
|
||||
*
|
||||
* @param cellItem item
|
||||
* @return number of bytes
|
||||
*/
|
||||
@@ -52,7 +52,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
|
||||
/**
|
||||
* Determines the number of bytes used for any type included on the cell.
|
||||
*
|
||||
*
|
||||
* @param cellItem item
|
||||
* @return number of bytes
|
||||
*/
|
||||
@@ -61,7 +61,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
/**
|
||||
* Must be between 1 and 63, indicates how many types you want to store on
|
||||
* the item.
|
||||
*
|
||||
*
|
||||
* @param cellItem item
|
||||
* @return number of types
|
||||
*/
|
||||
@@ -71,7 +71,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
* Allows you to fine tune which items are allowed on a given cell, if you
|
||||
* don't care, just return false; As the handler for this type of cell is
|
||||
* still the default cells, the normal AE black list is also applied.
|
||||
*
|
||||
*
|
||||
* @param cellItem item
|
||||
* @param requestedAddition requested addition
|
||||
* @return true to preventAdditionOfItem
|
||||
@@ -82,7 +82,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
* Allows you to specify if this storage cell can be stored inside other
|
||||
* storage cells, only set this for special items like the matter cannon
|
||||
* that are not general purpose storage.
|
||||
*
|
||||
*
|
||||
* @return true if the storage cell can be stored inside other storage
|
||||
* cells, this is generally false, except for certain situations
|
||||
* such as the matter cannon.
|
||||
@@ -92,7 +92,7 @@ public interface IStorageCell extends ICellWorkbenchItem
|
||||
/**
|
||||
* Allows an item to selectively enable or disable its status as a storage
|
||||
* cell.
|
||||
*
|
||||
*
|
||||
* @param i item
|
||||
* @return if the ItemStack should behavior as a storage cell.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user