path extensions - turn off nullability, we aren't ready for this stuff yet

This commit is contained in:
adelikat 2020-03-19 10:41:20 -05:00
parent 93c2644506
commit 5c7135d673
1 changed files with 4 additions and 2 deletions

View File

@ -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 ??= "";