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
@@ -39,7 +39,7 @@ public class AETileEventHandler
public AETileEventHandler( Method m, TileEventType which )
{
method = m;
this.method = m;
}
// TICK
@@ -47,7 +47,7 @@ public class AETileEventHandler
{
try
{
method.invoke( tile );
this.method.invoke( tile );
}
catch ( IllegalAccessException e )
{
@@ -68,7 +68,7 @@ public class AETileEventHandler
{
try
{
method.invoke( tile, data );
this.method.invoke( tile, data );
}
catch ( IllegalAccessException e )
{
@@ -89,7 +89,7 @@ public class AETileEventHandler
{
try
{
method.invoke( tile, data );
this.method.invoke( tile, data );
}
catch ( IllegalAccessException e )
{
@@ -110,7 +110,7 @@ public class AETileEventHandler
{
try
{
method.invoke( tile, data );
this.method.invoke( tile, data );
}
catch ( IllegalAccessException e )
{
@@ -138,7 +138,7 @@ public class AETileEventHandler
{
try
{
return ( Boolean ) method.invoke( tile, data );
return ( Boolean ) this.method.invoke( tile, data );
}
catch ( IllegalAccessException e )
{