mirror of
https://github.com/ppy/osu
synced 2025-03-03 10:02:04 +00:00
Use block body for constructor to fix remaining code inspection issue
This commit is contained in:
parent
e3884658af
commit
ecce12981e
@ -499,7 +499,10 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
private class MutedNotification : SimpleNotification
|
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;
|
public override bool IsImportant => true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user