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:
@ -19,8 +19,8 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
|
||||
|
||||
public FontAwesome Icon
|
||||
{
|
||||
get { return button.Icon; }
|
||||
set { button.Icon = value; }
|
||||
get => button.Icon;
|
||||
set => button.Icon = value;
|
||||
}
|
||||
|
||||
private readonly IconButton button;
|
||||
|
Reference in New Issue
Block a user