Use qualified access

This commit is contained in:
yueh
2016-01-01 01:50:28 +01:00
parent 7134e851e4
commit 98234f9935
7 changed files with 48 additions and 48 deletions
+2 -2
View File
@@ -411,7 +411,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
@Override
public EnumFacing getForward()
{
if( forward == null )
if( this.forward == null )
{
return EnumFacing.NORTH;
}
@@ -421,7 +421,7 @@ public class AEBaseTile extends TileEntity implements IOrientable, ICommonTile,
@Override
public EnumFacing getUp()
{
if( up == null )
if( this.up == null )
{
return EnumFacing.UP;
}