diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-03-09 22:48:00 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-03-12 21:00:23 +0100 |
commit | 4bc43d2741fa4904e51fc5da71d15b804c556c43 (patch) | |
tree | 1747e08585ef0c98a13d3477369b4f159071a762 /widgets/aerc.go | |
parent | 65ae87a524ebbb573626afe951d6cd29bc8b24cd (diff) | |
download | aerc-4bc43d2741fa4904e51fc5da71d15b804c556c43.tar.gz |
all: fix minor issues found by staticcheck
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Diffstat (limited to 'widgets/aerc.go')
-rw-r--r-- | widgets/aerc.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/widgets/aerc.go b/widgets/aerc.go index 98bc1b23..8061f388 100644 --- a/widgets/aerc.go +++ b/widgets/aerc.go @@ -598,13 +598,11 @@ func (aerc *Aerc) AddDialog(d ui.DrawableInteractive) { aerc.Invalidate() }) aerc.Invalidate() - return } func (aerc *Aerc) CloseDialog() { aerc.dialog = nil aerc.Invalidate() - return } func (aerc *Aerc) GetPassword(title string, prompt string) (chText chan string, chErr chan error) { @@ -622,7 +620,6 @@ func (aerc *Aerc) GetPassword(title string, prompt string) (chText chan string, } chErr <- nil chText <- pw - return }) aerc.AddDialog(getPasswd) |