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

@@ -32,7 +32,7 @@ namespace BinaryObjectScanner.Interfaces
#if NET48
string Extract(Stream stream, string file, bool includeDebug);
#else
string? Extract(Stream stream, string file, bool includeDebug);
string? Extract(Stream? stream, string file, bool includeDebug);
#endif
}
}