Fix more nullability locations

This commit is contained in:
Matt Nadareski
2023-10-25 23:33:51 -04:00
parent 9a3dcf70de
commit cb3846261a
53 changed files with 75 additions and 52 deletions

View File

@@ -55,7 +55,7 @@ namespace BinaryObjectScanner.Packer
#if NET48
public string Extract(Stream stream, string file, bool includeDebug)
#else
public string? Extract(Stream stream, string file, bool includeDebug)
public string? Extract(Stream? stream, string file, bool includeDebug)
#endif
{
return null;