Use qualified method and field access

This commit is contained in:
yueh
2017-08-11 21:43:47 +02:00
parent cdcab7d91c
commit e39855b48f
30 changed files with 207 additions and 205 deletions
+2 -2
View File
@@ -87,7 +87,7 @@ public class TileItemGen extends AEBaseTile
{
if( CapabilityItemHandler.ITEM_HANDLER_CAPABILITY == capability )
{
return (T) handler;
return (T) this.handler;
}
return super.getCapability( capability, facing );
}
@@ -132,7 +132,7 @@ public class TileItemGen extends AEBaseTile
return ItemStack.EMPTY;
}
return simulate ? is.copy() : getNextItem();
return simulate ? is.copy() : this.getNextItem();
}
private ItemStack getNextItem()