Remove uncessary err != nil check. (#3346)

This commit is contained in:
Bala FA 2016-11-24 15:22:33 -08:00 committed by Harshavardhana
parent a822b8e782
commit 39f9324616
2 changed files with 5 additions and 5 deletions

View File

@ -180,7 +180,7 @@ func (authClient *AuthRPCClient) Call(serviceMethod string, args interface {
err = authClient.rpc.Call(serviceMethod, args, reply) err = authClient.rpc.Call(serviceMethod, args, reply)
// Invalidate token, and mark it for re-login on subsequent reconnect. // Invalidate token, and mark it for re-login on subsequent reconnect.
if err != nil && err == rpc.ErrShutdown { if err == rpc.ErrShutdown {
authClient.mu.Lock() authClient.mu.Lock()
authClient.isLoggedIn = false authClient.isLoggedIn = false
authClient.mu.Unlock() authClient.mu.Unlock()

View File

@ -24,22 +24,22 @@ import (
// Function not implemented error // Function not implemented error
func isSysErrNoSys(err error) bool { func isSysErrNoSys(err error) bool {
return err != nil && err == syscall.ENOSYS return err == syscall.ENOSYS
} }
// Not supported error // Not supported error
func isSysErrOpNotSupported(err error) bool { func isSysErrOpNotSupported(err error) bool {
return err != nil && err == syscall.EOPNOTSUPP return err == syscall.EOPNOTSUPP
} }
// No space left on device error // No space left on device error
func isSysErrNoSpace(err error) bool { func isSysErrNoSpace(err error) bool {
return err != nil && err == syscall.ENOSPC return err == syscall.ENOSPC
} }
// Input/output error // Input/output error
func isSysErrIO(err error) bool { func isSysErrIO(err error) bool {
return err != nil && err == syscall.EIO return err == syscall.EIO
} }
// Check if the given error corresponds to ENOTDIR (is not a directory). // Check if the given error corresponds to ENOTDIR (is not a directory).