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 struct BarsInfo
{ {
private readonly List<float> initialLengths; private List<float> initialLengths;
private readonly List<float> finalLengths; private List<float> finalLengths;
private readonly List<float> instantaneousLengths; private List<float> instantaneousLengths;
public bool Any => initialLengths.Any(); public bool Any => initialLengths.Any();