Refactoring
Type-safety Minor performance improvements
This commit is contained in:
@@ -68,7 +68,7 @@ public enum ButtonToolTips
|
||||
|
||||
public String getUnlocalized()
|
||||
{
|
||||
return root + "." + toString();
|
||||
return root + '.' + toString();
|
||||
}
|
||||
|
||||
public String getLocal()
|
||||
|
||||
@@ -82,7 +82,7 @@ public enum GuiText
|
||||
|
||||
public String getUnlocalized()
|
||||
{
|
||||
return root + "." + toString();
|
||||
return root + '.' + toString();
|
||||
}
|
||||
|
||||
public String getLocal()
|
||||
|
||||
@@ -41,7 +41,7 @@ public enum WailaText
|
||||
|
||||
public String getUnlocalized()
|
||||
{
|
||||
return root + "." + toString();
|
||||
return root + '.' + toString();
|
||||
}
|
||||
|
||||
public String getLocal()
|
||||
|
||||
Reference in New Issue
Block a user