1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 05:15:37 +08:00

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)
{
}
}
}
}

View File

@ -406,7 +406,9 @@ namespace osu.Game.Skinning.Editor
private class SkinEditorToast : Toast
{
public SkinEditorToast(LocalisableString value, string skinDisplayName)
: base(SkinSettingsStrings.SkinLayoutEditor, value, skinDisplayName) { }
: base(SkinSettingsStrings.SkinLayoutEditor, value, skinDisplayName)
{
}
}
}
}