mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-11 23:40:57 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -2,21 +2,22 @@
|
||||
|
||||
package MyGame.OtherNameSpace;
|
||||
|
||||
import java.nio.*;
|
||||
import java.lang.*;
|
||||
import java.util.*;
|
||||
import com.google.flatbuffers.*;
|
||||
import java.nio.*;
|
||||
import java.util.*;
|
||||
|
||||
public class TableBT {
|
||||
private TableAT a;
|
||||
|
||||
public TableAT getA() { return a; }
|
||||
|
||||
public void setA(TableAT a) { this.a = a; }
|
||||
public TableAT getA() {
|
||||
return a;
|
||||
}
|
||||
|
||||
public void setA(TableAT a) {
|
||||
this.a = a;
|
||||
}
|
||||
|
||||
public TableBT() {
|
||||
this.a = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user