mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 14:12:56 +08:00
Remove now unused implementations of interface equality
This commit is contained in:
parent
285b161da7
commit
611b9fe942
@ -4,7 +4,6 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Extensions;
|
||||
using osu.Game.Rulesets;
|
||||
|
||||
#nullable enable
|
||||
@ -104,11 +103,5 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
public string Hash => throw new NotImplementedException();
|
||||
|
||||
#endregion
|
||||
|
||||
#region Implementation of IEquatable<IBeatmapInfo>
|
||||
|
||||
public bool Equals(IBeatmapInfo? other) => this.MatchesOnlineID(other);
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,6 @@ using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Database;
|
||||
using osu.Game.Extensions;
|
||||
|
||||
#nullable enable
|
||||
|
||||
@ -142,11 +141,5 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
double IBeatmapSetInfo.MaxBPM => BPM;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Implementation of IEquatable<IBeatmapSetInfo>
|
||||
|
||||
public bool Equals(IBeatmapInfo? other) => this.MatchesOnlineID(other);
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user