From 6838c23478944a9b45df1fa9a0f432ec77423987 Mon Sep 17 00:00:00 2001 From: Wagner Riffel Date: Tue, 3 Sep 2019 16:34:03 -0300 Subject: all: purge redundant underscores Signed-off-by: Wagner Riffel --- commands/msgview/next-part.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/msgview/next-part.go') diff --git a/commands/msgview/next-part.go b/commands/msgview/next-part.go index 8f25e02..c9423cc 100644 --- a/commands/msgview/next-part.go +++ b/commands/msgview/next-part.go @@ -14,15 +14,15 @@ func init() { register(NextPrevPart{}) } -func (_ NextPrevPart) Aliases() []string { +func (NextPrevPart) Aliases() []string { return []string{"next-part", "prev-part"} } -func (_ NextPrevPart) Complete(aerc *widgets.Aerc, args []string) []string { +func (NextPrevPart) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ NextPrevPart) Execute(aerc *widgets.Aerc, args []string) error { +func (NextPrevPart) Execute(aerc *widgets.Aerc, args []string) error { if len(args) > 2 { return nextPrevPartUsage(args[0]) } -- cgit v1.2.3