From c2a336647c90bd9140d9140a1f0410af30e4052e Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 21 Aug 2024 22:15:14 +1000 Subject: [PATCH] Use `Type.EmptyTypes` in `MovieImport.ImportFile` --- src/BizHawk.Client.Common/movie/import/MovieImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/movie/import/MovieImport.cs b/src/BizHawk.Client.Common/movie/import/MovieImport.cs index 29f53f670b..a1b2e7dfde 100644 --- a/src/BizHawk.Client.Common/movie/import/MovieImport.cs +++ b/src/BizHawk.Client.Common/movie/import/MovieImport.cs @@ -43,7 +43,7 @@ namespace BizHawk.Client.Common var result = Importers.FirstOrNull(kvp => string.Equals(kvp.Value.Extension, ext, StringComparison.OrdinalIgnoreCase)); // Create a new instance of the importer class using the no-argument constructor return result is { Key: var importerType } - && importerType.GetConstructor(Array.Empty())?.Invoke(Array.Empty()) is IMovieImport importer + && importerType.GetConstructor(Type.EmptyTypes)?.Invoke(Array.Empty()) is IMovieImport importer ? importer.Import(dialogParent, session, path, config) : ImportResult.Error($"No importer found for file type {ext}"); }