mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -190,7 +190,7 @@ namespace osu.Game.Tests.Visual
|
||||
|
||||
public double Value
|
||||
{
|
||||
set { valueText.Text = $"{value:G}"; }
|
||||
set => valueText.Text = $"{value:G}";
|
||||
}
|
||||
|
||||
public InfoString(string header)
|
||||
|
Reference in New Issue
Block a user