mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 04:59:52 +08:00
Fix nullability inspection
This commit is contained in:
@@ -39,7 +39,7 @@ namespace osu.Game.Skinning
|
||||
|
||||
protected override bool ShouldDeleteArchive(string path) => Path.GetExtension(path).ToLowerInvariant() == @".osk";
|
||||
|
||||
protected override SkinInfo? CreateModel(ArchiveReader archive, ImportParameters parameters) => new SkinInfo { Name = archive.Name ?? @"No name" };
|
||||
protected override SkinInfo CreateModel(ArchiveReader archive, ImportParameters parameters) => new SkinInfo { Name = archive.Name ?? @"No name" };
|
||||
|
||||
private const string unknown_creator_string = @"Unknown";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user