Skip to content

Commit

Permalink
use empty event args
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-mh committed Jul 14, 2023
1 parent f88ea66 commit 7a91b00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override void OnAuthenticationError(int errorCode, ICharSequence errStrin
public override void OnAuthenticationFailed()
{
base.OnAuthenticationFailed();
Failed?.Invoke(this, null);
Failed?.Invoke(this, EventArgs.Empty);
}

public override void OnAuthenticationSucceeded(BiometricPrompt.AuthenticationResult result)
Expand Down
2 changes: 1 addition & 1 deletion AuthenticatorPro.Droid/src/Callback/SnackbarCallback.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public override void OnDismissed(Snackbar transientBottomBar, int e)
public override void OnShown(Snackbar sb)
{
base.OnShown(sb);
Shown?.Invoke(sb, null);
Shown?.Invoke(sb, EventArgs.Empty);
}
}
}

0 comments on commit 7a91b00

Please sign in to comment.