mirror of
https://github.com/ppy/osu
synced 2025-01-04 13:22:08 +00:00
Remove superfluous CanBeNull
dependency specs
As stated before, not required in NRT-annotated files if auto-properties are already marked nullable.
This commit is contained in:
parent
7ace50f442
commit
d055d16ba7
@ -31,7 +31,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
[Resolved]
|
||||
private LadderInfo ladderInfo { get; set; } = null!;
|
||||
|
||||
[Resolved(canBeNull: true)]
|
||||
[Resolved]
|
||||
private IDialogOverlay? dialogOverlay { get; set; }
|
||||
|
||||
public RoundRow(TournamentRound round)
|
||||
|
@ -63,7 +63,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
[Resolved]
|
||||
private TournamentSceneManager? sceneManager { get; set; }
|
||||
|
||||
[Resolved(canBeNull: true)]
|
||||
[Resolved]
|
||||
private IDialogOverlay? dialogOverlay { get; set; }
|
||||
|
||||
[Resolved]
|
||||
|
@ -26,7 +26,7 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
{
|
||||
protected abstract BindableList<TModel> Storage { get; }
|
||||
|
||||
[Resolved(canBeNull: true)]
|
||||
[Resolved]
|
||||
private IDialogOverlay? dialogOverlay { get; set; }
|
||||
|
||||
private FillFlowContainer<TDrawable> flow = null!;
|
||||
|
Loading…
Reference in New Issue
Block a user