Skip to content

Commit

Permalink
Merge 980af31 into f470709
Browse files Browse the repository at this point in the history
  • Loading branch information
najmsheikh committed Jun 14, 2019
2 parents f470709 + 980af31 commit e5768e4
Showing 1 changed file with 5 additions and 4 deletions.
Expand Up @@ -405,11 +405,12 @@ public Builder setEmail(String email) {
}

/**
* The SHA-256 hash of the transacting customer’s lowercase email, as a 64-character hex string.
* Note: The value of the e-mail address must be converted to lowercase before computing the hash.
* The hash itself may use uppercase or lowercase hex characters.
* The SHA-256 hash of the transacting customer’s lowercase email, as a 64-character
* hex string.
* Note: The value of the e-mail address must be converted to lowercase before
* computing the hash. The hash itself may use uppercase or lowercase hex characters.
*/
public Builder setEmailSha256(@Nullable String emailSha256) {
public Builder setEmailSha256(String emailSha256) {
this.emailSha256 = emailSha256;
return this;
}
Expand Down

0 comments on commit e5768e4

Please sign in to comment.