Skip to content

Commit

Permalink
Validate the bool params
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenbaker committed Aug 28, 2023
1 parent 6d099b1 commit 5b00087
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ private V4aProperties(BuilderImpl builder) {
this.credentials = Validate.paramNotNull(builder.credentials, "Credentials");
this.credentialScope = Validate.paramNotNull(builder.credentialScope, "CredentialScope");
this.signingClock = Validate.paramNotNull(builder.signingClock, "SigningClock");
this.doubleUrlEncode = builder.doubleUrlEncode;
this.normalizePath = builder.normalizePath;
this.doubleUrlEncode = Validate.paramNotNull(builder.doubleUrlEncode, "DoubleUrlEncode");
this.normalizePath = Validate.paramNotNull(builder.normalizePath, "NormalizePath");
}

public AwsCredentialsIdentity getCredentials() {
Expand Down

0 comments on commit 5b00087

Please sign in to comment.