aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Poldrack <git@moritz.sh>2022-07-29 21:12:26 +0200
committerRobin Jarry <robin@jarry.cc>2022-08-04 21:57:45 +0200
commit77a00de741d8fb791bf1e9aab34ff9940385e31a (patch)
treeed673de1eedfa8fee3ab40e5c6e2aae583550030
parentea2ac83a4db8d531de7edf550b0adc404936e18d (diff)
downloadaerc-77a00de741d8fb791bf1e9aab34ff9940385e31a.tar.gz
lint: remove redundant returns (S1023)
Signed-off-by: Moritz Poldrack <moritz@poldrack.dev> Acked-by: Robin Jarry <robin@jarry.cc>
-rw-r--r--commands/account/import-mbox.go1
-rw-r--r--commands/msg/recall.go1
-rw-r--r--commands/msg/unsubscribe.go2
-rw-r--r--worker/imap/connect.go1
4 files changed, 0 insertions, 5 deletions
diff --git a/commands/account/import-mbox.go b/commands/account/import-mbox.go
index b497787b..9f0e7004 100644
--- a/commands/account/import-mbox.go
+++ b/commands/account/import-mbox.go
@@ -139,7 +139,6 @@ func (ImportMbox) Execute(aerc *widgets.Aerc, args []string) error {
case "Yes":
go importFolder()
}
- return
},
)
aerc.AddDialog(confirm)
diff --git a/commands/msg/recall.go b/commands/msg/recall.go
index 1ce6ce6b..f0bafc73 100644
--- a/commands/msg/recall.go
+++ b/commands/msg/recall.go
@@ -131,7 +131,6 @@ func (Recall) Execute(aerc *widgets.Aerc, args []string) error {
deleteMessage()
default:
}
- return
},
)
aerc.AddDialog(confirm)
diff --git a/commands/msg/unsubscribe.go b/commands/msg/unsubscribe.go
index 8895e6dc..3982f7ba 100644
--- a/commands/msg/unsubscribe.go
+++ b/commands/msg/unsubscribe.go
@@ -105,7 +105,6 @@ func (Unsubscribe) Execute(aerc *widgets.Aerc, args []string) error {
}
}
aerc.PushError("Unsubscribe: selected method not found")
- return
},
)
aerc.AddDialog(dialog)
@@ -190,7 +189,6 @@ func unsubscribeHTTP(aerc *widgets.Aerc, u *url.URL) error {
default:
aerc.PushError("Unsubscribe: link will not be opened")
}
- return
},
)
aerc.AddDialog(confirm)
diff --git a/worker/imap/connect.go b/worker/imap/connect.go
index 35fd9b11..7c43b561 100644
--- a/worker/imap/connect.go
+++ b/worker/imap/connect.go
@@ -119,7 +119,6 @@ func newTCPConn(addr string, timeout time.Duration) (*net.TCPConn, error) {
}
done <- tcpConn{newConn, nil}
- return
}()
select {