mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-12 16:00:59 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -5,10 +5,11 @@ package NamespaceA.NamespaceB
|
||||
@Suppress("unused")
|
||||
@ExperimentalUnsignedTypes
|
||||
class UnionInNestedNS private constructor() {
|
||||
companion object {
|
||||
const val NONE: UByte = 0u
|
||||
const val TableInNestedNS: UByte = 1u
|
||||
val names : Array<String> = arrayOf("NONE", "TableInNestedNS")
|
||||
fun name(e: Int) : String = names[e]
|
||||
}
|
||||
companion object {
|
||||
const val NONE: UByte = 0u
|
||||
const val TableInNestedNS: UByte = 1u
|
||||
val names: Array<String> = arrayOf("NONE", "TableInNestedNS")
|
||||
|
||||
fun name(e: Int): String = names[e]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user