cmd: fix megacheck warnings (#14912)

* cmd: fix megacheck warnings

* cmd: revert time.Until changes, keep readFloat
This commit is contained in:
Egon Elbre 2017-08-07 14:34:21 +03:00 committed by Péter Szilágyi
parent 8c2cf3c66c
commit 85454e7678
4 changed files with 16 additions and 19 deletions

View File

@ -46,8 +46,5 @@ func disasmCmd(ctx *cli.Context) error {
code := strings.TrimSpace(string(in[:])) code := strings.TrimSpace(string(in[:]))
fmt.Printf("%v\n", code) fmt.Printf("%v\n", code)
if err = asm.PrintDisassembled(code); err != nil { return asm.PrintDisassembled(code)
return err
}
return nil
} }

View File

@ -122,7 +122,7 @@ func dial(server string, pubkey []byte) (*sshClient, error) {
} }
} }
// If a public key exists for this SSH server, check that it matches // If a public key exists for this SSH server, check that it matches
if bytes.Compare(pubkey, key.Marshal()) == 0 { if bytes.Equal(pubkey, key.Marshal()) {
return nil return nil
} }
// We have a mismatch, forbid connecting // We have a mismatch, forbid connecting

View File

@ -160,6 +160,7 @@ func (w *wizard) readDefaultInt(def int) int {
} }
} }
/*
// readFloat reads a single line from stdin, trimming if from spaces, enforcing it // readFloat reads a single line from stdin, trimming if from spaces, enforcing it
// to parse into a float. // to parse into a float.
func (w *wizard) readFloat() float64 { func (w *wizard) readFloat() float64 {
@ -180,6 +181,7 @@ func (w *wizard) readFloat() float64 {
return val return val
} }
} }
*/
// readDefaultFloat reads a single line from stdin, trimming if from spaces, enforcing // readDefaultFloat reads a single line from stdin, trimming if from spaces, enforcing
// it to parse into a float. If an empty line is entered, the default value is returned. // it to parse into a float. If an empty line is entered, the default value is returned.

View File

@ -71,7 +71,6 @@ func (w *wizard) makeServer() string {
fmt.Println() fmt.Println()
fmt.Println("Please enter remote server's address:") fmt.Println("Please enter remote server's address:")
for {
// Read and fial the server to ensure docker is present // Read and fial the server to ensure docker is present
input := w.readString() input := w.readString()
@ -86,7 +85,6 @@ func (w *wizard) makeServer() string {
w.conf.flush() w.conf.flush()
return input return input
}
} }
// selectServer lists the user all the currnetly known servers to choose from, // selectServer lists the user all the currnetly known servers to choose from,