Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomazFB committed Oct 23, 2023
1 parent 5a430a7 commit 0d59e02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ private void doAuthWithSecurityKeyAction() {
if (!NetworkUtils.checkConnection(getActivity())) {
return;
}
//TODO: Check if security key is available, if not, trigger PushSecurityKeyPayload
// TODO: Check if security key is available, if not, trigger PushSecurityKeyPayload
PushSecurityKeyPayload payload = new PushSecurityKeyPayload(mEmailAddress, mPassword);
mDispatcher.dispatch(AuthenticationActionBuilder.newAuthenticateSecurityKeyAction(payload));
}
Expand Down Expand Up @@ -560,7 +560,7 @@ private void setTextForSms() {
@Subscribe(threadMode = ThreadMode.MAIN)
public void onWebauthnChallengeReceived(OnWebauthnChallengeReceived event) {
if (event.isError()) {
//TODO: Handle error
// TODO: Handle error
return;
}
mLoginListener.signSecurityKey(event.challengeInfo);
Expand Down

0 comments on commit 0d59e02

Please sign in to comment.