mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Remove unnecessary null
casts
This commit is contained in:
@ -34,6 +34,6 @@ namespace osu.Game.Graphics.UserInterface
|
||||
{
|
||||
}
|
||||
|
||||
public override IconUsage? GetIconForState(bool state) => state ? (IconUsage?)FontAwesome.Solid.Check : null;
|
||||
public override IconUsage? GetIconForState(bool state) => state ? FontAwesome.Solid.Check : null;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user