diff --git a/Switch_Toolbox_Library/IO/FlatBuffer/FlatBufferConverter.cs b/Switch_Toolbox_Library/IO/FlatBuffer/FlatBufferConverter.cs index 46577f16..be3b129c 100644 --- a/Switch_Toolbox_Library/IO/FlatBuffer/FlatBufferConverter.cs +++ b/Switch_Toolbox_Library/IO/FlatBuffer/FlatBufferConverter.cs @@ -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; }