mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-04 04:33:23 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -4,13 +4,17 @@ package NamespaceA.NamespaceB;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public final class EnumInNestedNS {
|
||||
private EnumInNestedNS() { }
|
||||
private EnumInNestedNS() {}
|
||||
|
||||
public static final byte A = 0;
|
||||
public static final byte B = 1;
|
||||
public static final byte C = 2;
|
||||
|
||||
public static final String[] names = { "A", "B", "C", };
|
||||
public static final String[] names = {
|
||||
"A", "B", "C",
|
||||
};
|
||||
|
||||
public static String name(int e) { return names[e]; }
|
||||
public static String name(int e) {
|
||||
return names[e];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user