make constructors private
All checks were successful
studiorailgun/highlevel-netcode-gen/pipeline/head This commit looks good

This commit is contained in:
austin 2024-09-22 11:22:24 -04:00
parent 0c38bb77d1
commit af8e7cad75

View File

@ -7,6 +7,6 @@
* @param parent The parent entity of this tree * @param parent The parent entity of this tree
* @param params Optional parameters that can be provided when attaching the tree. All custom data required for creating this tree should be passed in this varargs. * @param params Optional parameters that can be provided when attaching the tree. All custom data required for creating this tree should be passed in this varargs.
*/ */
public REPLACE_0_ME(Entity parent, Object ... params){ private REPLACE_0_ME(Entity parent, Object ... params){
this.parent = parent; this.parent = parent;
} }