From b9b3efb09f9281a5859646d2dcf36b5813132efb Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 9 Jan 2017 11:16:06 +0100 Subject: all: fix ineffectual assignments and remove uses of crypto.Sha3 go get github.com/gordonklaus/ineffassign ineffassign . --- cmd/utils/customflags.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cmd/utils') diff --git a/cmd/utils/customflags.go b/cmd/utils/customflags.go index 11c92d451..8e5944a50 100644 --- a/cmd/utils/customflags.go +++ b/cmd/utils/customflags.go @@ -54,15 +54,10 @@ type DirectoryFlag struct { } func (self DirectoryFlag) String() string { - var fmtString string - fmtString = "%s %v\t%v" - + fmtString := "%s %v\t%v" if len(self.Value.Value) > 0 { fmtString = "%s \"%v\"\t%v" - } else { - fmtString = "%s %v\t%v" } - return withEnvHint(self.EnvVar, fmt.Sprintf(fmtString, prefixedNames(self.Name), self.Value.Value, self.Usage)) } -- cgit v1.2.3