mirror of
https://github.com/minio/minio.git
synced 2025-01-24 13:13:16 -05:00
Remove redundant !ok for map
This commit is contained in:
parent
3842a57f52
commit
573a6134b2
@ -88,11 +88,8 @@ func GetGlobalState() map[string]string {
|
||||
// GetGlobalStateKey - get value for key from globalState struct
|
||||
func GetGlobalStateKey(k string) string {
|
||||
globalState.RLock()
|
||||
result, ok := globalState.m[k]
|
||||
result, _ := globalState.m[k]
|
||||
globalState.RUnlock()
|
||||
if !ok {
|
||||
return ""
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user