minio: Simplify for `gosimple` tool complaints.

master
Harshavardhana 9 years ago
parent ba3a5805c1
commit 6037fe66e9
  1. 4
      access-key.go
  2. 2
      globals.go
  3. 2
      pkg/disk/type_darwin.go
  4. 5
      utils.go

@ -44,10 +44,10 @@ const (
)
// isValidSecretKey - validate secret key.
var isValidSecretKey = regexp.MustCompile("^.{8,40}$")
var isValidSecretKey = regexp.MustCompile(`^.{8,40}$`)
// isValidAccessKey - validate access key.
var isValidAccessKey = regexp.MustCompile("^[a-zA-Z0-9\\-\\.\\_\\~]{5,20}$")
var isValidAccessKey = regexp.MustCompile(`^[a-zA-Z0-9\\-\\.\\_\\~]{5,20}$`)
// mustGenAccessKeys - must generate access credentials.
func mustGenAccessKeys() (creds credential) {

@ -56,7 +56,7 @@ func setGlobals(quiet, debug bool) {
globalQuiet = quiet
globalDebug = debug
// Enable debug messages if requested.
if globalDebug == true {
if globalDebug {
console.DebugPrint = true
}
}

@ -37,7 +37,7 @@ func getFSType(path string) (string, error) {
}
fsTypeHex := strconv.FormatUint(uint64(s.Type), 16)
fsTypeString, ok := fsType2StringMap[fsTypeHex]
if ok == false {
if !ok {
return "UNKNOWN", nil
}
return fsTypeString, nil

@ -40,10 +40,7 @@ const (
// isMaxObjectSize - verify if max object size
func isMaxObjectSize(size int64) bool {
if size > maxObjectSize {
return true
}
return false
return size > maxObjectSize
}
func contains(stringList []string, element string) bool {

Loading…
Cancel
Save