Always use qualified access for fields and methods

This commit is contained in:
yueh
2017-07-20 21:27:22 +02:00
parent f9cad0758d
commit 15582fd1df
211 changed files with 1086 additions and 1086 deletions
@@ -41,7 +41,7 @@ public class BlockQuartzPillar extends AEBaseBlock implements IOrientableBlock
{
super( Material.ROCK );
// The upwards facing pillar is the default (i.e. for the item model)
setDefaultState( getDefaultState().withProperty( AXIS_ORIENTATION, EnumFacing.Axis.Y ) );
this.setDefaultState( this.getDefaultState().withProperty( AXIS_ORIENTATION, EnumFacing.Axis.Y ) );
}
@Override
@@ -47,22 +47,22 @@ public final class GlassState
public int getX()
{
return x;
return this.x;
}
public int getY()
{
return y;
return this.y;
}
public int getZ()
{
return z;
return this.z;
}
public boolean isFlushWith( EnumFacing side )
{
return flushWith.contains( side );
return this.flushWith.contains( side );
}
}