Skip to content

Commit

Permalink
PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stormeye2000 committed Jul 2, 2024
1 parent 448bc43 commit 2ab9628
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 @@ -27,7 +27,7 @@ public class DeployVerifier {
public void verifyDeploy(final Deploy jsonDeploy) throws GeneralSecurityException {
assert jsonDeploy != null: "Deploy cannot be null";

var deployHeader = DeployHeaderHelper.buildHeader(jsonDeploy);
var deployHeader = DeployHeaderHelper.cloneHeader(jsonDeploy);

verifyDeploySignature(jsonDeploy);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
public class DeployHeaderHelper {

public static DeployHeader buildHeader(final Deploy deploy) {
public static DeployHeader cloneHeader(final Deploy deploy) {

try {
return buildDeployHeader(
Expand Down

0 comments on commit 2ab9628

Please sign in to comment.