mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 03:39:53 +08:00
Remove readonly modifier from struct fields
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user