[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 Ability : IFlatbufferObject
_o.Id,
_o.Distance);
}
};
}
public class AbilityT
{

View File

@@ -97,7 +97,7 @@ public struct ArrayStruct : IFlatbufferObject
_o.E,
_f);
}
};
}
public class ArrayStructT
{

View File

@@ -44,7 +44,7 @@ public struct ArrayTable : IFlatbufferObject
AddA(builder, MyGame.Example.ArrayStruct.Pack(builder, _o.A));
return EndArrayTable(builder);
}
};
}
public class ArrayTableT
{

View File

@@ -741,7 +741,7 @@ public struct Monster : IFlatbufferObject
_testrequirednestedflatbuffer,
_scalar_key_sorted_tables);
}
};
}
public class MonsterT
{

View File

@@ -66,7 +66,7 @@ public struct NestedStruct : IFlatbufferObject
_c,
_d);
}
};
}
public class NestedStructT
{

View File

@@ -74,7 +74,7 @@ public struct Referrable : IFlatbufferObject
builder,
_o.Id);
}
};
}
public class ReferrableT
{

View File

@@ -94,7 +94,7 @@ public struct Stat : IFlatbufferObject
_o.Val,
_o.Count);
}
};
}
public class StatT
{

View File

@@ -61,7 +61,7 @@ public struct StructOfStructs : IFlatbufferObject
_c_id,
_c_distance);
}
};
}
public class StructOfStructsT
{

View File

@@ -44,7 +44,7 @@ public struct Test : IFlatbufferObject
_o.A,
_o.B);
}
};
}
public class TestT
{

View File

@@ -49,7 +49,7 @@ internal partial struct TestSimpleTableWithEnum : IFlatbufferObject
builder,
_o.Color);
}
};
}
internal partial class TestSimpleTableWithEnumT
{

View File

@@ -158,7 +158,7 @@ public struct TypeAliases : IFlatbufferObject
_v8,
_vf64);
}
};
}
public class TypeAliasesT
{

View File

@@ -71,7 +71,7 @@ public struct Vec3 : IFlatbufferObject
_test3_a,
_test3_b);
}
};
}
public class Vec3T
{