summaryrefslogtreecommitdiff
path: root/entry.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-11-04 00:12:48 -0500
committerJeff Carr <[email protected]>2021-11-04 00:12:48 -0500
commitae7a69b636bc145745ed8e2b30ab2adba166be74 (patch)
treed40da36b80dac68c6df71af4d2f6ccb54e4d75e2 /entry.go
parent8236be92dc72c2b443dc6ccfc2c2f6877af22afa (diff)
PANIC: remove almost all panic()s
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'entry.go')
-rw-r--r--entry.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/entry.go b/entry.go
index 05db849..d215cd2 100644
--- a/entry.go
+++ b/entry.go
@@ -14,7 +14,6 @@ func (n *Node) NewLabel(text string) *Node {
// n.Append(ui.NewLabel(text), false)
newNode := n.makeNode(text, 333, 334)
newNode.Dump()
- // panic("node.NewLabel()")
n.Append(newNode)
return newNode