Skip to content

Commit

Permalink
Variable renames.
Browse files Browse the repository at this point in the history
  • Loading branch information
DolphFlynn committed Dec 30, 2024
1 parent 2a765b7 commit ba380c0
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,13 @@ private void signingDialog(SignDialog.Mode mode) {
showDialogAndUpdateJWS(signDialog);
}

private void showDialogAndUpdateJWS(OperationDialog<JWS> signDialog) {
signDialog.display();
private void showDialogAndUpdateJWS(OperationDialog<JWS> dialog) {
dialog.display();

// If a JWS was created by the dialog, replace the contents of the editor
JWS signedJWS = signDialog.getJWT();
if (signedJWS != null) {
setJWS(signedJWS);
JWS updatedJWS = dialog.getJWT();

if (updatedJWS != null) {
setJWS(updatedJWS);
}
}

Expand Down

0 comments on commit ba380c0

Please sign in to comment.