[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

@@ -43,7 +43,7 @@ public struct StructInNestedNS : IFlatbufferObject
_o.A,
_o.B);
}
};
}
public class StructInNestedNST
{

View File

@@ -49,7 +49,7 @@ public struct TableInNestedNS : IFlatbufferObject
builder,
_o.Foo);
}
};
}
public class TableInNestedNST
{

View File

@@ -49,7 +49,7 @@ public struct SecondTableInA : IFlatbufferObject
builder,
_refer_to_c);
}
};
}
public class SecondTableInAT
{

View File

@@ -83,7 +83,7 @@ public struct TableInFirstNS : IFlatbufferObject
_foo_union,
_o.FooStruct);
}
};
}
public class TableInFirstNST
{