1
0
mirror of synced 2024-11-28 01:10:51 +01:00

Try to fix build

This commit is contained in:
KillzXGaming 2019-12-07 20:22:28 -05:00
parent e4722ed1af
commit 6da93a9b34

View File

@ -200,8 +200,8 @@ namespace Toolbox.Library.IO
public static byte[] GetSchema(string name)
{
var obj = Properties.Resources.ResourceManager.GetObject(name);
if (!(obj is byte[] b))
throw new FileNotFoundException(nameof(name));
if (!(obj is byte[] b)) {
throw new FileNotFoundException(nameof(name)); }
return b;
}