mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
remove redundant ToString call
This commit is contained in:
@ -82,7 +82,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
{
|
||||
object bindableObj = property.GetValue(this);
|
||||
bool? settingIsDefault = (bindableObj as IHasDefaultValue)?.IsDefault;
|
||||
string tooltipText = settingIsDefault == true ? string.Empty : attr.Label + " " + bindableObj.ToString();
|
||||
string tooltipText = settingIsDefault == true ? string.Empty : attr.Label + " " + bindableObj;
|
||||
tooltipTexts.Add(tooltipText);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user