From f86019397bdc2b505423504d4ccd3a4c00cce5ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20B=C3=B6hm?= Date: Thu, 1 Apr 2021 10:44:49 -0700 Subject: [PATCH] fix: Remove unused `addDataNode` method --- src/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index 8ea0f6c9..df6b4fad 100644 --- a/src/index.ts +++ b/src/index.ts @@ -254,11 +254,6 @@ export class DomHandler { node.parent = parent; this.lastNode = null; } - - protected addDataNode(node: DataNode): void { - this.addNode(node); - this.lastNode = node; - } } export default DomHandler;