Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
@@ -37,8 +37,8 @@ public class DriveWatcher<T extends IAEStack<T>> extends MEInventoryHandler<T>
public DriveWatcher(IMEInventory<T> i, ItemStack is, ICellHandler han, IChestOrDrive cod) {
super( i, i.getChannel() );
this.is = is;
handler = han;
cord = cod;
this.handler = han;
this.cord = cod;
}
@Override
@@ -50,11 +50,11 @@ public class DriveWatcher<T extends IAEStack<T>> extends MEInventoryHandler<T>
if ( a == null || a.getStackSize() != size )
{
int newStatus = handler.getStatusForCell( is, getInternal() );
int newStatus = this.handler.getStatusForCell( this.is, this.getInternal() );
if ( newStatus != oldStatus )
if ( newStatus != this.oldStatus )
{
cord.blinkCell( getSlot() );
this.cord.blinkCell( this.getSlot() );
}
}
@@ -68,11 +68,11 @@ public class DriveWatcher<T extends IAEStack<T>> extends MEInventoryHandler<T>
if ( a != null )
{
int newStatus = handler.getStatusForCell( is, getInternal() );
int newStatus = this.handler.getStatusForCell( this.is, this.getInternal() );
if ( newStatus != oldStatus )
if ( newStatus != this.oldStatus )
{
cord.blinkCell( getSlot() );
this.cord.blinkCell( this.getSlot() );
}
}