aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2023-08-29 13:15:47 -0500
committerRobin Jarry <robin@jarry.cc>2023-08-30 22:10:58 +0200
commitf8747089b3ef26ffd0b8d673419654335417be8e (patch)
tree5c6764808b1316c4b5a7e1d62dda98c35f0327b0
parent781820627f1cb87df898d1a7b5f3b56c6fa20b77 (diff)
downloadaerc-f8747089b3ef26ffd0b8d673419654335417be8e.tar.gz
aerc-f8747089b3ef26ffd0b8d673419654335417be8e.zip
notmuch: remove unused code
The thread.go file hasn't been used for a long time. Remove it. Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
-rw-r--r--worker/notmuch/lib/thread.go15
1 files changed, 0 insertions, 15 deletions
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
-}