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

@ -225,10 +225,10 @@ namespace osu.Game.Tests.Online
this.testBeatmapManager = testBeatmapManager;
}
public override Live<BeatmapSetInfo> Import(BeatmapSetInfo item, ArchiveReader archive = null, bool lowPriority = false, CancellationToken cancellationToken = default)
public override Live<BeatmapSetInfo> Import(BeatmapSetInfo item, ArchiveReader archive = null, CancellationToken cancellationToken = default)
{
testBeatmapManager.AllowImport.Task.WaitSafely();
return (testBeatmapManager.CurrentImport = base.Import(item, archive, lowPriority, cancellationToken));
return (testBeatmapManager.CurrentImport = base.Import(item, archive, cancellationToken));
}
}
}