Fix formatting inconsistencies in empty ctors

This commit is contained in:
Dean Herbert
2022-07-22 14:00:29 +09:00
parent ed94d7fce8
commit f713253d1b
2 changed files with 6 additions and 2 deletions

View File

@ -945,7 +945,9 @@ namespace osu.Game.Screens.Edit
private class BeatmapEditorToast : Toast
{
public BeatmapEditorToast(LocalisableString value, string beatmapDisplayName)
: base(InputSettingsStrings.EditorSection, value, beatmapDisplayName) { }
: base(InputSettingsStrings.EditorSection, value, beatmapDisplayName)
{
}
}
}
}