mirror of
https://github.com/ppy/osu
synced 2024-12-13 10:28:17 +00:00
Replace LINQ Count()
invocation with count property access
This commit is contained in:
parent
3037a3a769
commit
1253e1ecc1
@ -184,7 +184,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
|
||||
private void onNewFrames(int userId, FrameDataBundle frames)
|
||||
{
|
||||
Logger.Log($"Received {frames.Frames.Count()} new frames ({string.Join(',', frames.Frames.Select(f => ((int)f.Time).ToString()))})");
|
||||
Logger.Log($"Received {frames.Frames.Count} new frames ({string.Join(',', frames.Frames.Select(f => ((int)f.Time).ToString()))})");
|
||||
|
||||
foreach (var legacyFrame in frames.Frames)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user