From b74527ddf442acac90a75a4ded09e1a8f18b14aa Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Tue, 21 Dec 2021 11:00:25 -0600 Subject: [PATCH] remove unused clear method --- src/container-instance.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/container-instance.ts b/src/container-instance.ts index 49a80be..bc64ad6 100644 --- a/src/container-instance.ts +++ b/src/container-instance.ts @@ -20,10 +20,6 @@ export abstract class ContainerInstance extends BaseInstance { this.children.push(child) } - clear() { - this.children.splice(0) - } - protected getChildrenText(): string { let text = "" for (const child of this.children) {