1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 04:52:57 +08:00

Switch BeatmapInfo.OnlineID delegation to use property getter for conformity

This commit is contained in:
Dean Herbert 2021-11-12 19:06:12 +09:00
parent 692e846acd
commit 5e88d59a26

View File

@ -177,7 +177,7 @@ namespace osu.Game.Beatmaps
#region Implementation of IHasOnlineID
int IHasOnlineID<int>.OnlineID => onlineID ?? -1;
int IHasOnlineID<int>.OnlineID => OnlineID ?? -1;
#endregion