Fix build issue from removed using statement

This commit is contained in:
Matt Nadareski
2024-03-20 11:45:36 -04:00
parent d507b84b28
commit c90c7a7dd7

View File

@@ -1393,7 +1393,7 @@ namespace SabreTools.DatFiles
#if NET20 || NET35 || NET40 || NET452
machine[key] = new T[0];
#else
machine[key] = Array.Empty<T>();
machine[key] = System.Array.Empty<T>();
#endif
}