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
@@ -42,31 +42,31 @@ public class CrashEnhancement implements ICrashCallable
if ( Output == CrashInfo.MOD_VERSION )
{
name = "AE2 Version";
value = ModVersion;
this.name = "AE2 Version";
this.value = this.ModVersion;
}
else if ( Output == CrashInfo.INTEGRATION )
{
name = "AE2 Integration";
value = IntegrationRegistry.INSTANCE.getStatus();
this.name = "AE2 Integration";
this.value = IntegrationRegistry.INSTANCE.getStatus();
}
else
{
name = "AE2_UNKNOWN";
value = "UNKNOWN_VALUE";
this.name = "AE2_UNKNOWN";
this.value = "UNKNOWN_VALUE";
}
}
@Override
public String call() throws Exception
{
return value;
return this.value;
}
@Override
public String getLabel()
{
return name;
return this.name;
}
}