cleanup: remove continue statement after a return statement, because it's unreachable

This commit is contained in:
Don Kuntz 2019-02-22 10:38:27 -06:00
parent e251adb37e
commit e4faa98b6f
1 changed files with 0 additions and 1 deletions

View File

@ -54,7 +54,6 @@ func (FixerAmazonPrivateIP) Fix(input map[string]interface{}) (map[string]interf
privateIP, err = strconv.ParseBool(privateIPi.(string))
if err != nil {
return nil, fmt.Errorf("ssh_private_ip is not a boolean")
continue
}
}