Fix IDE0005 and IDE0034

This commit is contained in:
Huo Yaoyuan
2022-05-02 20:07:53 +08:00
parent 4f16da8932
commit 7cf4dabe29
6 changed files with 6 additions and 9 deletions

View File

@ -100,7 +100,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
private void updateTooltipText()
{
TooltipText = cumulativeRotation.Value?.ToLocalisableString("0.0°") ?? default(LocalisableString);
TooltipText = cumulativeRotation.Value?.ToLocalisableString("0.0°") ?? default;
}
}
}