Skip to content

Commit

Permalink
Switch BeatmapInfo.OnlineID delegation to use property getter for c…
Browse files Browse the repository at this point in the history
…onformity
  • Loading branch information
peppy committed Nov 12, 2021
1 parent 692e846 commit 5e88d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Beatmaps/BeatmapInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public bool BackgroundEquals(BeatmapInfo other) => other != null && BeatmapSet !

#region Implementation of IHasOnlineID

int IHasOnlineID<int>.OnlineID => onlineID ?? -1;
int IHasOnlineID<int>.OnlineID => OnlineID ?? -1;

#endregion

Expand Down

0 comments on commit 5e88d59

Please sign in to comment.