mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 04:21:13 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -2,21 +2,22 @@
|
||||
|
||||
package NamespaceA;
|
||||
|
||||
import java.nio.*;
|
||||
import java.lang.*;
|
||||
import java.util.*;
|
||||
import com.google.flatbuffers.*;
|
||||
import java.nio.*;
|
||||
import java.util.*;
|
||||
|
||||
public class SecondTableInAT {
|
||||
private NamespaceC.TableInCT referToC;
|
||||
|
||||
public NamespaceC.TableInCT getReferToC() { return referToC; }
|
||||
|
||||
public void setReferToC(NamespaceC.TableInCT referToC) { this.referToC = referToC; }
|
||||
public NamespaceC.TableInCT getReferToC() {
|
||||
return referToC;
|
||||
}
|
||||
|
||||
public void setReferToC(NamespaceC.TableInCT referToC) {
|
||||
this.referToC = referToC;
|
||||
}
|
||||
|
||||
public SecondTableInAT() {
|
||||
this.referToC = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user