mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -28,10 +28,7 @@ namespace osu.Game.Overlays.Settings
|
||||
private SettingsSection section;
|
||||
public SettingsSection Section
|
||||
{
|
||||
get
|
||||
{
|
||||
return section;
|
||||
}
|
||||
get => section;
|
||||
set
|
||||
{
|
||||
section = value;
|
||||
@ -43,7 +40,7 @@ namespace osu.Game.Overlays.Settings
|
||||
private bool selected;
|
||||
public bool Selected
|
||||
{
|
||||
get { return selected; }
|
||||
get => selected;
|
||||
set
|
||||
{
|
||||
selected = value;
|
||||
|
Reference in New Issue
Block a user