From f8747089b3ef26ffd0b8d673419654335417be8e Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Tue, 29 Aug 2023 13:15:47 -0500 Subject: notmuch: remove unused code The thread.go file hasn't been used for a long time. Remove it. Signed-off-by: Tim Culverhouse Acked-by: Robin Jarry --- worker/notmuch/lib/thread.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 worker/notmuch/lib/thread.go (limited to 'worker/notmuch/lib') diff --git a/worker/notmuch/lib/thread.go b/worker/notmuch/lib/thread.go deleted file mode 100644 index 33bf872c..00000000 --- a/worker/notmuch/lib/thread.go +++ /dev/null @@ -1,15 +0,0 @@ -//go:build notmuch -// +build notmuch - -package lib - -type ThreadNode struct { - Uid string - From string - Subject string - InQuery bool // is the msg included in the query - - Parent *ThreadNode - NextSibling *ThreadNode - FirstChild *ThreadNode -} -- cgit