mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Code quality
This commit is contained in:
@ -35,7 +35,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
Content = null;
|
||||
BackgroundFlow.Clear();
|
||||
|
||||
if (value?.Any() != true)
|
||||
if (!value.Any())
|
||||
return;
|
||||
|
||||
foreach (var group in value)
|
||||
@ -67,7 +67,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
}, true);
|
||||
}
|
||||
|
||||
private void updateSelectedGroup() => SetRowSelected(selectedGroup?.Value);
|
||||
private void updateSelectedGroup() => SetRowSelected(selectedGroup.Value);
|
||||
|
||||
private TableColumn[] createHeaders()
|
||||
{
|
||||
|
Reference in New Issue
Block a user