path extensions - turn off nullability, we aren't ready for this stuff yet
This commit is contained in:
parent
93c2644506
commit
5c7135d673
|
@ -1,4 +1,6 @@
|
|||
using System;
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
|
@ -66,7 +68,7 @@ namespace BizHawk.Common.PathExtensions
|
|||
return absolutePath;
|
||||
}
|
||||
|
||||
public static string FilesystemSafeName(this string? name)
|
||||
public static string FilesystemSafeName(this string name)
|
||||
{
|
||||
name ??= "";
|
||||
|
||||
|
|
Loading…
Reference in New Issue