Code linting

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-08-09 08:44:14 -04:00
parent f5148d2ae6
commit 40533ad989
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
3 changed files with 5 additions and 10 deletions

View file

@ -86,12 +86,7 @@ func (e1 *Config) Equal(e2 *Config) bool {
return false
}
match = sets.StringElementsMatch(e1.AuthCacheDuration, e2.AuthCacheDuration)
if !match {
return false
}
return true
return sets.StringElementsMatch(e1.AuthCacheDuration, e2.AuthCacheDuration)
}
var (