mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-29 01:50:24 +00:00
Fix nulability warning
This commit is contained in:
@@ -544,7 +544,7 @@ namespace BinaryObjectScanner.FileType
|
||||
/// </summary>
|
||||
private static IEnumerable<T>? InitCheckClasses<T>(Assembly assembly)
|
||||
{
|
||||
List<T?> types = [];
|
||||
List<T> types = [];
|
||||
try
|
||||
{
|
||||
foreach (Type type in assembly.GetTypes())
|
||||
|
||||
Reference in New Issue
Block a user