impossible null

This commit is contained in:
cdwcgt 2022-11-21 19:45:30 +09:00
parent 162f0bb95e
commit c509c5be40
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ namespace osu.Game.Online.Leaderboards
[Resolved]
private RealmAccess realm { get; set; }
[Resolved]
[Resolved(canBeNull: true)]
private INotificationOverlay notifications { get; set; }
public ITooltip<ScoreInfo> GetCustomTooltip() => new LeaderboardScoreTooltip();

View File

@ -144,7 +144,7 @@ namespace osu.Game.Overlays.Settings.Sections
[Resolved]
private RealmAccess realm { get; set; }
[Resolved]
[Resolved(canBeNull: true)]
private INotificationOverlay notifications { get; set; }
private Bindable<Skin> currentSkin;