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
@@ -59,21 +59,21 @@ public enum ButtonToolTips
final String root;
ButtonToolTips() {
root = "gui.tooltips.appliedenergistics2";
this.root = "gui.tooltips.appliedenergistics2";
}
ButtonToolTips(String r) {
root = r;
this.root = r;
}
public String getUnlocalized()
{
return root + '.' + toString();
return this.root + '.' + this.toString();
}
public String getLocal()
{
return StatCollector.translateToLocal( getUnlocalized() );
return StatCollector.translateToLocal( this.getUnlocalized() );
}
}
@@ -73,21 +73,21 @@ public enum GuiText
final String root;
GuiText() {
root = "gui.appliedenergistics2";
this.root = "gui.appliedenergistics2";
}
GuiText(String r) {
root = r;
this.root = r;
}
public String getUnlocalized()
{
return root + '.' + toString();
return this.root + '.' + this.toString();
}
public String getLocal()
{
return StatCollector.translateToLocal( getUnlocalized() );
return StatCollector.translateToLocal( this.getUnlocalized() );
}
}
@@ -29,12 +29,12 @@ public enum PlayerMessages
String getName()
{
return "chat.appliedenergistics2." + toString();
return "chat.appliedenergistics2." + this.toString();
}
public IChatComponent get()
{
return new ChatComponentTranslation( getName() );
return new ChatComponentTranslation( this.getName() );
}
}
@@ -32,21 +32,21 @@ public enum WailaText
final String root;
WailaText() {
root = "waila.appliedenergistics2";
this.root = "waila.appliedenergistics2";
}
WailaText(String r) {
root = r;
this.root = r;
}
public String getUnlocalized()
{
return root + '.' + toString();
return this.root + '.' + this.toString();
}
public String getLocal()
{
return StatCollector.translateToLocal( getUnlocalized() );
return StatCollector.translateToLocal( this.getUnlocalized() );
}
}