mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
Remove unused setter
This commit is contained in:
parent
39934bccd6
commit
8dbc38e17a
@ -103,13 +103,6 @@ namespace osu.Game.Utils
|
|||||||
|
|
||||||
return array[(start + index) % capacity];
|
return array[(start + index) % capacity];
|
||||||
}
|
}
|
||||||
set
|
|
||||||
{
|
|
||||||
if (index < 0 || index >= Count)
|
|
||||||
throw new ArgumentOutOfRangeException(nameof(index));
|
|
||||||
|
|
||||||
array[(start + index) % capacity] = value;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user