[C#] Remove superfluous semicolon in C# structs (#6791)

Aims to resolve #6788

-Remove superfluous semicolon in C# structs
This commit is contained in:
Todd Hansen
2021-08-17 10:02:57 -05:00
committed by GitHub
parent d6f51ea16d
commit 4a0879458d
27 changed files with 27 additions and 27 deletions

View File

@@ -1335,7 +1335,7 @@ class CSharpGenerator : public BaseGenerator {
GenPackUnPack_ObjectAPI(struct_def, code_ptr, opts, struct_has_create,
field_has_create_set);
}
code += "};\n\n";
code += "}\n\n";
if (opts.generate_object_based_api) {
GenStruct_ObjectAPI(struct_def, code_ptr, opts);