mirror of https://github.com/ppy/osu
Use Array.Empty instead
This commit is contained in:
parent
c1b3ee6bb2
commit
63a017bc8e
|
@ -60,7 +60,7 @@ protected override void LoadComplete()
|
|||
base.LoadComplete();
|
||||
|
||||
// will be restored via lease, see `DisallowExternalBeatmapRulesetChanges`.
|
||||
Mods.Value = ArraySegment<Mod>.Empty;
|
||||
Mods.Value = Array.Empty<Mod>();
|
||||
}
|
||||
|
||||
protected virtual Editor CreateEditor() => new Editor(this);
|
||||
|
|
Loading…
Reference in New Issue