From af8e7cad755df6058dfb45c2c082f00ee8f9155d Mon Sep 17 00:00:00 2001 From: austin Date: Sun, 22 Sep 2024 11:22:24 -0400 Subject: [PATCH] make constructors private --- src/main/resources/btree/Constructor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/btree/Constructor.java b/src/main/resources/btree/Constructor.java index 82dc53a..762ca7d 100644 --- a/src/main/resources/btree/Constructor.java +++ b/src/main/resources/btree/Constructor.java @@ -7,6 +7,6 @@ * @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. */ -public REPLACE_0_ME(Entity parent, Object ... params){ +private REPLACE_0_ME(Entity parent, Object ... params){ this.parent = parent; } \ No newline at end of file