bulk code format fix (#8707)

This commit is contained in:
Derek Bailey
2025-09-23 21:50:27 -07:00
committed by GitHub
parent 0e047869da
commit caf3b494db
559 changed files with 38871 additions and 31276 deletions

View File

@@ -2,27 +2,32 @@
package NamespaceC;
import java.nio.*;
import java.lang.*;
import java.util.*;
import com.google.flatbuffers.*;
import java.nio.*;
import java.util.*;
public class TableInCT {
private NamespaceA.TableInFirstNST referToA1;
private NamespaceA.SecondTableInAT referToA2;
public NamespaceA.TableInFirstNST getReferToA1() { return referToA1; }
public NamespaceA.TableInFirstNST getReferToA1() {
return referToA1;
}
public void setReferToA1(NamespaceA.TableInFirstNST referToA1) { this.referToA1 = referToA1; }
public void setReferToA1(NamespaceA.TableInFirstNST referToA1) {
this.referToA1 = referToA1;
}
public NamespaceA.SecondTableInAT getReferToA2() { return referToA2; }
public void setReferToA2(NamespaceA.SecondTableInAT referToA2) { this.referToA2 = referToA2; }
public NamespaceA.SecondTableInAT getReferToA2() {
return referToA2;
}
public void setReferToA2(NamespaceA.SecondTableInAT referToA2) {
this.referToA2 = referToA2;
}
public TableInCT() {
this.referToA1 = null;
this.referToA2 = null;
}
}