I received an warning about `Redundant "if" statem...
# codereview
a
I received an warning about `Redundant "if" statement
Copy code
if (TextUtils.isEmpty(email)
                && TextUtils.isEmpty(password)
                && TextUtils.isEmpty(confirmPassword)) {
            buttonRegister.isEnabled = false
        } else {
            buttonRegister.isEnabled = true
        }