mirror of
https://github.com/ppy/osu
synced 2024-12-17 12:25:19 +00:00
Remove readonly modifier from struct fields
This commit is contained in:
parent
2cb966b47c
commit
fbfcf49ea6
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user