mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 07:41:18 +08:00
used Any() instead of manually checking count == 0 (CI)
This commit is contained in:
@@ -343,7 +343,7 @@ namespace osu.Game.Beatmaps
|
||||
{
|
||||
var mapSets = QueryBeatmapSets(bs => bs.DeletePending);
|
||||
|
||||
if (mapSets.Count() == 0) return;
|
||||
if (!mapSets.Any()) return;
|
||||
|
||||
var notification = new ProgressNotification
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user