mirror of
https://github.com/ppy/osu
synced 2024-12-24 15:53:37 +00:00
Enable nullable on ImportTask
This commit is contained in:
parent
77279a7e56
commit
58d7e41978
@ -1,6 +1,8 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using osu.Game.IO.Archives;
|
using osu.Game.IO.Archives;
|
||||||
using osu.Game.Utils;
|
using osu.Game.Utils;
|
||||||
@ -21,7 +23,7 @@ namespace osu.Game.Database
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// An optional stream which provides the file content.
|
/// An optional stream which provides the file content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Stream Stream { get; }
|
public Stream? Stream { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Construct a new import task from a path (on a local filesystem).
|
/// Construct a new import task from a path (on a local filesystem).
|
||||||
|
Loading…
Reference in New Issue
Block a user