1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-10 02:13:40 +08:00

Remove unused setter

This commit is contained in:
Bartłomiej Dach
2022-11-22 20:14:22 +01:00
Unverified
parent 39934bccd6
commit 8dbc38e17a
-7
View File
@@ -103,13 +103,6 @@ namespace osu.Game.Utils
return array[(start + index) % capacity];
}
set
{
if (index < 0 || index >= Count)
throw new ArgumentOutOfRangeException(nameof(index));
array[(start + index) % capacity] = value;
}
}
/// <summary>