1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

Use block body for constructor to fix remaining code inspection issue

This commit is contained in:
Craftplacer 2019-09-15 17:47:44 +02:00
parent e3884658af
commit ecce12981e

View File

@ -499,7 +499,10 @@ namespace osu.Game.Screens.Play
private class MutedNotification : SimpleNotification
{
public MutedNotification() => Text = "Your music volume is set to 0%! Click here to restore it.";
public MutedNotification()
{
Text = "Your music volume is set to 0%! Click here to restore it.";
}
public override bool IsImportant => true;