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:
@ -205,7 +205,7 @@ namespace osu.Game.Overlays.Notifications
|
||||
|
||||
public bool Pulsate
|
||||
{
|
||||
get { return pulsate; }
|
||||
get => pulsate;
|
||||
set
|
||||
{
|
||||
if (pulsate == value) return;
|
||||
|
Reference in New Issue
Block a user