Remove unused lowPriority flag from one Import method

This commit is contained in:
Dean Herbert
2022-06-14 19:52:30 +09:00
parent ca0765a932
commit 9f599a5ab4
5 changed files with 7 additions and 8 deletions

View File

@ -374,7 +374,7 @@ namespace osu.Game.Beatmaps
public Live<BeatmapSetInfo>? Import(BeatmapSetInfo item, ArchiveReader? archive = null, bool lowPriority = false, CancellationToken cancellationToken = default)
{
return beatmapModelManager.Import(item, archive, lowPriority, cancellationToken);
return beatmapModelManager.Import(item, archive, cancellationToken);
}
public IEnumerable<string> HandledExtensions => beatmapModelManager.HandledExtensions;