From 0de5e899eae91e19ecae3c2cddb2d8317a5043c0 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 20 Apr 2020 21:25:17 +0200 Subject: [PATCH] remove dead code --- src/ui/web/general/ListView.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/ui/web/general/ListView.js b/src/ui/web/general/ListView.js index fb5be255..4bd14f7c 100644 --- a/src/ui/web/general/ListView.js +++ b/src/ui/web/general/ListView.js @@ -1,13 +1,5 @@ import {tag} from "./html.js"; -class UIView { - mount() {} - unmount() {} - update(_value) {} - // can only be called between a call to mount and unmount - root() {} -} - function insertAt(parentNode, idx, childNode) { const isLast = idx === parentNode.childElementCount; if (isLast) {