mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -14,7 +14,7 @@ namespace osu.Game.Screens.Edit.Components.RadioButtons
|
||||
private IReadOnlyList<RadioButton> items;
|
||||
public IReadOnlyList<RadioButton> Items
|
||||
{
|
||||
get { return items; }
|
||||
get => items;
|
||||
set
|
||||
{
|
||||
if (ReferenceEquals(items, value))
|
||||
|
Reference in New Issue
Block a user