Merge pull request #16528 from peppy/remove-detach-collection

Remove unnecessary detach operation
This commit is contained in:
Dan Balasescu 2022-01-20 18:11:22 +09:00 committed by GitHub
commit 2da8d8a279
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,7 +209,7 @@ namespace osu.Game.Collections
string checksum = sr.ReadString();
var beatmap = beatmaps.QueryBeatmap(b => b.MD5Hash == checksum)?.Detach();
var beatmap = beatmaps.QueryBeatmap(b => b.MD5Hash == checksum);
if (beatmap != null)
collection.Beatmaps.Add(beatmap);
}