mirror of
https://github.com/kubernetes/client-go.git
synced 2025-09-06 01:20:40 +00:00
simplify returning boolean expression in staging/src/k8s.io/client-go/tools
Signed-off-by: 刁浩 10284789 <diao.hao@zte.com.cn> Kubernetes-commit: 9173414da6d1c70436b256d6068e3737a7434f6a
This commit is contained in:
committed by
Kubernetes Publisher
parent
614c59d0d6
commit
5b0c7191ef
@@ -36,9 +36,5 @@ func ValidateEventType(eventtype string) bool {
|
||||
func IsKeyNotFoundError(err error) bool {
|
||||
statusErr, _ := err.(*errors.StatusError)
|
||||
|
||||
if statusErr != nil && statusErr.Status().Code == http.StatusNotFound {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
return statusErr != nil && statusErr.Status().Code == http.StatusNotFound
|
||||
}
|
||||
|
Reference in New Issue
Block a user