Code quality

This commit is contained in:
Jai Sharma
2022-11-27 03:23:08 +00:00
parent 6000e14668
commit 218c04c174
4 changed files with 5 additions and 5 deletions

View File

@ -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()
{