Merge pull request #15461 from peppy/fix-more-computationally-expensive

Fix a few more "maybe null" inspections
This commit is contained in:
Dean Herbert
2021-11-04 16:49:38 +09:00
committed by GitHub
2 changed files with 10 additions and 7 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Screens.Select
new PopupDialogOkButton
{
Text = @"Yes. Totally. Delete it.",
Action = () => manager.Delete(beatmap),
Action = () => manager?.Delete(beatmap),
},
new PopupDialogCancelButton
{