mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Annotate potentially null parameters in protected ctor of LegacySkin
This commit is contained in:
@ -58,7 +58,7 @@ namespace osu.Game.Skinning
|
||||
{
|
||||
}
|
||||
|
||||
protected LegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, IStorageResourceProvider resources, string filename)
|
||||
protected LegacySkin(SkinInfo skin, [CanBeNull] IResourceStore<byte[]> storage, [CanBeNull] IStorageResourceProvider resources, string filename)
|
||||
: base(skin)
|
||||
{
|
||||
using (var stream = storage?.GetStream(filename))
|
||||
|
Reference in New Issue
Block a user