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/account/next-folder.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/account/next-folder.go') diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go index 537a351..6a22772 100644 --- a/commands/account/next-folder.go +++ b/commands/account/next-folder.go @@ -14,15 +14,15 @@ func init() { register(NextPrevFolder{}) } -func (_ NextPrevFolder) Aliases() []string { +func (NextPrevFolder) Aliases() []string { return []string{"next-folder", "prev-folder"} } -func (_ NextPrevFolder) Complete(aerc *widgets.Aerc, args []string) []string { +func (NextPrevFolder) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ NextPrevFolder) Execute(aerc *widgets.Aerc, args []string) error { +func (NextPrevFolder) Execute(aerc *widgets.Aerc, args []string) error { if len(args) > 2 { return nextPrevFolderUsage(args[0]) } -- cgit v1.2.3