Always use qualified access for fields and methods
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user