Code cleanup

Added missing this, annotations, etc.
This commit is contained in:
yueh
2018-08-30 20:33:08 +02:00
parent fed12cb99f
commit a2091d10fe
77 changed files with 227 additions and 270 deletions
@@ -43,9 +43,9 @@ public class AEFluidTank extends FluidTank implements IAEFluidTank
@Override
protected void onContentsChanged()
{
if( host != null && Platform.isServer() )
if( this.host != null && Platform.isServer() )
{
host.onFluidInventoryChanged( this, 0 );
this.host.onFluidInventoryChanged( this, 0 );
}
super.onContentsChanged();
}