Skip to content

Commit

Permalink
Fix mistaken null check
Browse files Browse the repository at this point in the history
  • Loading branch information
Avery-Dunn committed Jul 7, 2023
1 parent ffb6ca5 commit 0a00f02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ class UserInformationFields {
}

String getPasswordInputId() {
if (passwordInputId != null) {
if (passwordInputId == null || passwordInputId.equals("")) {
determineFieldIds();
}
return passwordInputId;
}

String getPasswordSigInButtonId() {
if (passwordSigInButtonId != null) {
if (passwordSigInButtonId == null || passwordSigInButtonId.equals("")) {
determineFieldIds();
}
return passwordSigInButtonId;
Expand Down

0 comments on commit 0a00f02

Please sign in to comment.