Typo isMeaninful

This commit is contained in:
thatsIch 2014-09-20 22:42:09 +02:00
parent e9ff5bcd21
commit b7c1c7c602
4 changed files with 4 additions and 4 deletions

View file

@ -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 )

View file

@ -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();
}

View file

@ -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

View file

@ -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