Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
@@ -36,27 +36,27 @@ public class OreReference
public Collection<ItemStack> getEquivalents()
{
return otherOptions;
return this.otherOptions;
}
public List<IAEItemStack> getAEEquivalents()
{
if ( aeOtherOptions == null )
if ( this.aeOtherOptions == null )
{
aeOtherOptions = new ArrayList<IAEItemStack>( otherOptions.size() );
this.aeOtherOptions = new ArrayList<IAEItemStack>( this.otherOptions.size() );
// SUMMON AE STACKS!
for (ItemStack is : otherOptions)
for (ItemStack is : this.otherOptions)
if ( is.getItem() != null )
aeOtherOptions.add( AEItemStack.create( is ) );
this.aeOtherOptions.add( AEItemStack.create( is ) );
}
return aeOtherOptions;
return this.aeOtherOptions;
}
public Collection<Integer> getOres()
{
return ores;
return this.ores;
}
}