mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Round 2 of CI fixes.
This commit is contained in:
parent
a47b6526a2
commit
90885a31ae
@ -22,9 +22,6 @@ namespace osu.Game.Rulesets
|
||||
|
||||
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo), this);
|
||||
|
||||
public bool Equals(RulesetInfo other)
|
||||
{
|
||||
return ID == other?.ID && Available == other?.Available && Name == other?.Name && InstantiationInfo == other?.InstantiationInfo;
|
||||
}
|
||||
public bool Equals(RulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user