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/compose/cc-bcc.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/compose/cc-bcc.go') diff --git a/commands/compose/cc-bcc.go b/commands/compose/cc-bcc.go index db5f5b6..ce62242 100644 --- a/commands/compose/cc-bcc.go +++ b/commands/compose/cc-bcc.go @@ -12,15 +12,15 @@ func init() { register(CC{}) } -func (_ CC) Aliases() []string { +func (CC) Aliases() []string { return []string{"cc", "bcc"} } -func (_ CC) Complete(aerc *widgets.Aerc, args []string) []string { +func (CC) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ CC) Execute(aerc *widgets.Aerc, args []string) error { +func (CC) Execute(aerc *widgets.Aerc, args []string) error { var addrs string if len(args) > 1 { addrs = strings.Join(args[1:], " ") -- cgit v1.2.3