From bb9877adab0b77202875ed74e1d8209ce46b4fea Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 22 Dec 2021 20:48:48 +0900 Subject: [PATCH] Reapply `IWorkingBeatmap` nullability fixed --- osu.Game/Beatmaps/IWorkingBeatmap.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/osu.Game/Beatmaps/IWorkingBeatmap.cs b/osu.Game/Beatmaps/IWorkingBeatmap.cs index 3bfbbad714..5a8ae45226 100644 --- a/osu.Game/Beatmaps/IWorkingBeatmap.cs +++ b/osu.Game/Beatmaps/IWorkingBeatmap.cs @@ -37,12 +37,12 @@ namespace osu.Game.Beatmaps /// /// Retrieves the which this represents. /// - IBeatmap Beatmap { get; } + IBeatmap? Beatmap { get; } /// /// Retrieves the background for this . /// - Texture Background { get; } + Texture? Background { get; } /// /// Retrieves the for the of this . @@ -57,12 +57,12 @@ namespace osu.Game.Beatmaps /// /// Retrieves the which this provides. /// - ISkin Skin { get; } + ISkin? Skin { get; } /// /// Retrieves the which this has loaded. /// - Track Track { get; } + Track? Track { get; } /// /// Constructs a playable from using the applicable converters for a specific . @@ -114,7 +114,7 @@ namespace osu.Game.Beatmaps /// Returns the stream of the file from the given storage path. /// /// The storage path to the file. - Stream GetStream(string storagePath); + Stream? GetStream(string storagePath); /// /// Beings loading the contents of this asynchronously.