Remove @ExperimentalUnsignedTypes annotation from kotlin code generator. (#7092)

This commit is contained in:
Aaron Riekenberg
2022-02-13 22:29:36 -06:00
committed by GitHub
parent a94132a45f
commit 15df50eb7f
28 changed files with 0 additions and 29 deletions

View File

@@ -259,7 +259,6 @@ class KotlinGenerator : public BaseGenerator {
GenerateComment(enum_def.doc_comment, writer, &comment_config);
writer += "@Suppress(\"unused\")";
writer += "@ExperimentalUnsignedTypes";
writer += "class " + Esc(enum_def.name) + " private constructor() {";
writer.IncrementIdentLevel();
@@ -461,7 +460,6 @@ class KotlinGenerator : public BaseGenerator {
writer.SetValue("superclass", fixed ? "Struct" : "Table");
writer += "@Suppress(\"unused\")";
writer += "@ExperimentalUnsignedTypes";
writer += "class {{struct_name}} : {{superclass}}() {\n";
writer.IncrementIdentLevel();