1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 05:09:57 +08:00

Remove readonly modifier from struct fields

This commit is contained in:
Andrei Zavatski
2022-11-20 02:13:54 +03:00
Unverified
parent 2cb966b47c
commit fbfcf49ea6
+3 -3
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();