Replace call to simple getter from within class with inlined version
This commit is contained in:
@@ -231,9 +231,9 @@ public class AEBasePart implements IPart, IGridProxyable, IActionHost, IUpgradea
|
||||
|
||||
protected AEColor getColor()
|
||||
{
|
||||
if ( this.getHost() == null )
|
||||
if ( this.host == null )
|
||||
return AEColor.Transparent;
|
||||
return this.getHost().getColor();
|
||||
return this.host.getColor();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user