Typo isMeaninful
This commit is contained in:
parent
e9ff5bcd21
commit
b7c1c7c602
4 changed files with 4 additions and 4 deletions
|
@ -122,7 +122,7 @@ public class SecurityInventory implements IMEInventoryHandler<IAEItemStack>
|
|||
|
||||
for (IAEItemStack ais : storedItems)
|
||||
{
|
||||
if ( ais.isMeaninful() )
|
||||
if ( ais.isMeaningful() )
|
||||
{
|
||||
GameProfile thisUser = tbc.getProfile( ais.getItemStack() );
|
||||
if ( thisUser == newUser )
|
||||
|
|
|
@ -14,7 +14,7 @@ public abstract class AEStack<StackType extends IAEStack> implements IAEStack<St
|
|||
protected long countRequestable;
|
||||
|
||||
@Override
|
||||
public boolean isMeaninful()
|
||||
public boolean isMeaningful()
|
||||
{
|
||||
return stackSize != 0 || getCountRequestable() > 0 || isCraftable();
|
||||
}
|
||||
|
|
|
@ -150,7 +150,7 @@ public final class ItemList<StackType extends IAEStack> implements IItemList<Sta
|
|||
|
||||
/*
|
||||
* synchronized public void clean() { Iterator<StackType> i = iterator(); while (i.hasNext()) { StackType AEI =
|
||||
* i.next(); if ( !AEI.isMeaninful() ) i.remove(); } }
|
||||
* i.next(); if ( !AEI.isMeaningful() ) i.remove(); } }
|
||||
*/
|
||||
|
||||
@Override
|
||||
|
|
|
@ -20,7 +20,7 @@ public class MeanfulIterator<StackType extends IAEStack> implements Iterator
|
|||
while (parent.hasNext())
|
||||
{
|
||||
next = parent.next();
|
||||
if ( next.isMeaninful() )
|
||||
if ( next.isMeaningful() )
|
||||
return true;
|
||||
else
|
||||
parent.remove(); // self cleaning :3
|
||||
|
|
Loading…
Reference in a new issue