1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +08:00

Remove linq usage in BreakOverlay update (#5641)

Remove linq usage in BreakOverlay update
This commit is contained in:
Dean Herbert 2019-08-08 13:33:23 +09:00 committed by GitHub
commit f774c46f57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
@ -138,7 +137,7 @@ namespace osu.Game.Screens.Play
private void updateBreakTimeBindable()
{
if (breaks?.Any() != true)
if (breaks == null || breaks.Count == 0)
return;
var time = Clock.CurrentTime;