Handle ignored mappings locally in Detach configuration

This commit is contained in:
Dean Herbert
2022-01-07 22:57:12 +09:00
parent 2b8706b6ce
commit aaefd72c69
3 changed files with 3 additions and 12 deletions

View File

@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using AutoMapper;
using osu.Framework.Testing;
using osu.Game.Database;
using osu.Game.Extensions;
@ -76,10 +75,8 @@ namespace osu.Game.Beatmaps
public bool Equals(IBeatmapSetInfo? other) => other is BeatmapSetInfo b && Equals(b);
[IgnoreMap]
IEnumerable<IBeatmapInfo> IBeatmapSetInfo.Beatmaps => Beatmaps;
[IgnoreMap]
IEnumerable<INamedFileUsage> IHasNamedFiles.Files => Files;
}
}