mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
CA1825: use Array.Empty.
This commit is contained in:
@ -64,7 +64,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
/// The mods this mod cannot be enabled with.
|
||||
/// </summary>
|
||||
[JsonIgnore]
|
||||
public virtual Type[] IncompatibleMods => new Type[] { };
|
||||
public virtual Type[] IncompatibleMods => Array.Empty<Type>();
|
||||
|
||||
/// <summary>
|
||||
/// Creates a copy of this <see cref="Mod"/> initialised to a default state.
|
||||
|
Reference in New Issue
Block a user