1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 06:29:54 +08:00

Use string.Empty instead of default

This commit is contained in:
Dean Herbert
2023-02-10 16:22:06 +09:00
Unverified
parent a86f06df96
commit 68c37585e5
+1 -1
View File
@@ -19,7 +19,7 @@ namespace osu.Game.Users.Drawables
public override LocalisableString TooltipText
{
get => Enabled.Value ? tooltip : default;
get => Enabled.Value ? tooltip : string.Empty;
set => tooltip = value;
}