1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Remove now unused implementations of interface equality

This commit is contained in:
Dean Herbert 2021-11-15 14:50:09 +09:00
parent 285b161da7
commit 611b9fe942
2 changed files with 0 additions and 14 deletions

View File

@ -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
}
}

View File

@ -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
}
}