mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Use expression body for property get/set where possible
This commit is contained in:
@ -38,10 +38,7 @@ namespace osu.Game.Overlays.Chat.Selection
|
||||
public IEnumerable<string> FilterTerms => new[] { channel.Name };
|
||||
public bool MatchingFilter
|
||||
{
|
||||
set
|
||||
{
|
||||
this.FadeTo(value ? 1f : 0f, 100);
|
||||
}
|
||||
set => this.FadeTo(value ? 1f : 0f, 100);
|
||||
}
|
||||
|
||||
public Action<Channel> OnRequestJoin;
|
||||
|
Reference in New Issue
Block a user