I received an warning about `Redundant "if" statement ``` if (TextUtils.isEmpty(email) ...
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
        }