Merge pull request #655 from harshavardhana/pr_out_remove_redundant_ok_for_map

Remove redundant !ok for map
This commit is contained in:
Harshavardhana 2015-06-17 22:39:33 -07:00
commit 285b1cc5d8

View file

@ -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
}