1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Remove readonly modifier from struct fields

This commit is contained in:
Andrei Zavatski 2022-11-20 02:13:54 +03:00
parent 2cb966b47c
commit fbfcf49ea6

View File

@ -203,9 +203,9 @@ namespace osu.Game.Graphics.UserInterface
private struct BarsInfo
{
private readonly List<float> initialLengths;
private readonly List<float> finalLengths;
private readonly List<float> instantaneousLengths;
private List<float> initialLengths;
private List<float> finalLengths;
private List<float> instantaneousLengths;
public bool Any => initialLengths.Any();