Changed access to use this qualifier
This commit is contained in:
@@ -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() );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user