mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix build issue from removed using statement
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user