Make `BeatmapModelManager.Save` non-virtual

This commit is contained in:
Dean Herbert 2022-02-03 19:38:53 +09:00
parent b94fe84712
commit ad47649d1c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public BeatmapModelManager(RealmAccess realm, Storage storage, BeatmapOnlineLook
/// <param name="beatmapInfo">The <see cref="BeatmapInfo"/> to save the content against. The file referenced by <see cref="BeatmapInfo.Path"/> will be replaced.</param>
/// <param name="beatmapContent">The <see cref="IBeatmap"/> content to write.</param>
/// <param name="beatmapSkin">The beatmap <see cref="ISkin"/> content to write, null if to be omitted.</param>
public virtual void Save(BeatmapInfo beatmapInfo, IBeatmap beatmapContent, ISkin? beatmapSkin = null)
public void Save(BeatmapInfo beatmapInfo, IBeatmap beatmapContent, ISkin? beatmapSkin = null)
{
var setInfo = beatmapInfo.BeatmapSet;
Debug.Assert(setInfo != null);