From d4c152a4dba0eec7c8ecd13732900909f51b1c97 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Mon, 6 Jun 2022 19:41:07 -0700 Subject: Refactor and cleanup to improve testability --- hotline/ui.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'hotline/ui.go') diff --git a/hotline/ui.go b/hotline/ui.go index 168bf3a..b9e45dd 100644 --- a/hotline/ui.go +++ b/hotline/ui.go @@ -2,7 +2,6 @@ package hotline import ( "fmt" - "github.com/davecgh/go-spew/spew" "github.com/gdamore/tcell/v2" "github.com/rivo/tview" "gopkg.in/yaml.v3" @@ -108,7 +107,7 @@ func (ui *UI) showBookmarks() *tview.List { func (ui *UI) getTrackerList() *tview.List { listing, err := GetListing(ui.HLClient.pref.Tracker) if err != nil { - spew.Dump(err) + // TODO } list := tview.NewList() -- cgit